1111
This commit is contained in:
45
Service/Application.Domain.Entity/model/EquMent.cs
Normal file
45
Service/Application.Domain.Entity/model/EquMent.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
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; } }
|
||||
}
|
||||
Reference in New Issue
Block a user