This commit is contained in:
Putoo
2026-05-25 18:41:27 +08:00
parent 590f7c5290
commit 0afbf6e39a
32 changed files with 2137 additions and 101 deletions

View 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; } }
}

View 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; } }
}

View 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; }
}

View 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; } }
}