1233
This commit is contained in:
33
Service/Application.Domain.Entity/model/EquSuitAttr.cs
Normal file
33
Service/Application.Domain.Entity/model/EquSuitAttr.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class EquSuitAttr
|
||||
{
|
||||
private System.String _NeedType;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String NeedType
|
||||
{ get { return this._NeedType; } set { this._NeedType = value; } }
|
||||
|
||||
public String[] _NeedData;
|
||||
|
||||
public System.String[] NeedData
|
||||
{ get { return this._NeedData; } set { this._NeedData = value; } }
|
||||
|
||||
private System.Int32 _Type;
|
||||
|
||||
/// <summary>
|
||||
/// 0特殊属性 1隐藏属性
|
||||
/// </summary>
|
||||
public System.Int32 Type
|
||||
{ get { return this._Type; } set { this._Type = value; } }
|
||||
|
||||
private List<AttrItem> _AttrItem;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public List<AttrItem> AttrItem
|
||||
{ get { return this._AttrItem; } set { this._AttrItem = value; } }
|
||||
}
|
||||
Reference in New Issue
Block a user