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