45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
namespace Application.Domain.Entity;
|
|
|
|
public class EquMent
|
|
{
|
|
private System.String _name;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.String name
|
|
{ get { return this._name; } set { this._name = value; } }
|
|
|
|
private System.Int32 _goodsId;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.Int32 goodsId
|
|
{ get { return this._goodsId; } set { this._goodsId = value; } }
|
|
|
|
private System.Int32? _isDeal;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.Int32? isDeal
|
|
{ get { return this._isDeal; } set { this._isDeal = value; } }
|
|
|
|
private System.Int32? _isGive;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.Int32? isGive
|
|
{ get { return this._isGive; } set { this._isGive = value; } }
|
|
|
|
private List<AttrItem> _EquAttr;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDataType = "varchar(max)", IsJson = true)]
|
|
public List<AttrItem> EquAttr
|
|
{ get { return this._EquAttr; } set { this._EquAttr = value; } }
|
|
} |