1111
This commit is contained in:
36
Service/Application.Domain.Entity/model/AttrItem.cs
Normal file
36
Service/Application.Domain.Entity/model/AttrItem.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class AttrItem
|
||||
{
|
||||
private System.String _code;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String code
|
||||
{ get { return this._code; } set { this._code = value; } }
|
||||
|
||||
private System.String _compute;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String compute
|
||||
{ get { return this._compute; } set { this._compute = value; } }
|
||||
|
||||
private System.Decimal _parameter;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Decimal parameter
|
||||
{ get { return this._parameter; } set { this._parameter = value; } }
|
||||
|
||||
private System.String _tip;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String tip
|
||||
{ get { return this._tip; } set { this._tip = value; } }
|
||||
}
|
||||
37
Service/Application.Domain.Entity/model/EquAwaken.cs
Normal file
37
Service/Application.Domain.Entity/model/EquAwaken.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class EquAwaken
|
||||
{
|
||||
private System.String _atId;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String atId
|
||||
{ get { return this._atId; } set { this._atId = value; } }
|
||||
|
||||
private System.Int32 _lev;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 lev
|
||||
{ get { return this._lev; } set { this._lev = value; } }
|
||||
|
||||
private System.String _name;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String name
|
||||
{ get { return this._name; } set { this._name = value; } }
|
||||
|
||||
private List<AttrItem> _awaken;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SqlSugar.SugarColumn(ColumnDataType = "varchar(max)", IsJson = true)]
|
||||
public List<AttrItem> awaken
|
||||
{ get { return this._awaken; } set { this._awaken = value; } }
|
||||
}
|
||||
50
Service/Application.Domain.Entity/model/EquGem.cs
Normal file
50
Service/Application.Domain.Entity/model/EquGem.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class EquGem
|
||||
{
|
||||
private System.String _Id;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String Id
|
||||
{ get { return this._Id; } set { this._Id = value; } }
|
||||
|
||||
private System.Int32 _goodsId;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 goodsId
|
||||
{ get { return this._goodsId; } set { this._goodsId = value; } }
|
||||
|
||||
private System.String _goodsName;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String goodsName
|
||||
{ get { return this._goodsName; } set { this._goodsName = value; } }
|
||||
|
||||
private System.Int32? _isDeal;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32? isDeal
|
||||
{ get { return this._isDeal; } set { this._isDeal = value; } }
|
||||
|
||||
public EquGemItem gemItem { get; set; }
|
||||
}
|
||||
public class EquGemItem
|
||||
{
|
||||
private System.String _place;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String place
|
||||
{ get { return this._place; } set { this._place = value; } }
|
||||
|
||||
public List<AttrItem> GemAttr { get; set; }
|
||||
}
|
||||
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