1233
This commit is contained in:
20
Service/Application.Domain.Entity/model/EquSuitList.cs
Normal file
20
Service/Application.Domain.Entity/model/EquSuitList.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class EquSuitList
|
||||
{
|
||||
private System.Int32 _equId;
|
||||
|
||||
/// <summary>
|
||||
/// 装备表Id--goods表
|
||||
/// </summary>
|
||||
public System.Int32 equId
|
||||
{ get { return this._equId; } set { this._equId = value; } }
|
||||
|
||||
private System.String _equName;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String equName
|
||||
{ get { return this._equName; } set { this._equName = value; } }
|
||||
}
|
||||
Reference in New Issue
Block a user