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

@@ -63,8 +63,8 @@ namespace Application.Domain.Entity
/// <summary>
/// qualityAttr
/// </summary>
[SugarColumn(Length = 2000, IsNullable = true)]
public string? qualityAttr { get; set; }
[SugarColumn( IsNullable = true,IsJson = true)]
public List<AttrItem>? qualityAttr { get; set; }
/// <summary>
/// sex
@@ -172,7 +172,7 @@ namespace Application.Domain.Entity
/// useEndTime
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? useEndTime { get; set; }
public long? useEndTime { get; set; }
/// <summary>
/// weight
@@ -189,8 +189,8 @@ namespace Application.Domain.Entity
/// <summary>
/// sysPrice
/// </summary>
[SugarColumn(Length = 10, IsNullable = true)]
public decimal? sysPrice { get; set; }
[SugarColumn(IsNullable = true)]
public int? sysPrice { get; set; }
/// <summary>
/// canEqualUp
@@ -199,28 +199,28 @@ namespace Application.Domain.Entity
public int? canEqualUp { get; set; }
/// <summary>
/// EquAttr
/// 装备属性
/// </summary>
[SugarColumn(IsNullable = true)]
public string? EquAttr { get; set; }
[SugarColumn(IsNullable = true,IsJson = true)]
public List<AttrItem>? EquAttr { get; set; }
/// <summary>
/// EquMent
/// 附魔属性
/// </summary>
[SugarColumn(IsNullable = true)]
public string? EquMent { get; set; }
[SugarColumn(IsNullable = true,IsJson = true)]
public EquMent? EquMent { get; set; }
/// <summary>
/// EquAwaken
/// 觉醒属性
/// </summary>
[SugarColumn(IsNullable = true)]
public string? EquAwaken { get; set; }
[SugarColumn(IsNullable = true,IsJson = true)]
public List<EquAwaken>? EquAwaken { get; set; }
/// <summary>
/// GemMent
/// 宝石属性
/// </summary>
[SugarColumn(IsNullable = true)]
public string? GemMent { get; set; }
[SugarColumn(IsNullable = true,IsJson = true)]
public List<EquGem>? GemMent { get; set; }
/// <summary>
/// isDeal
@@ -235,33 +235,21 @@ namespace Application.Domain.Entity
public int? isGive { get; set; }
/// <summary>
/// score
/// </summary>
[SugarColumn(IsNullable = true)]
public int? score { get; set; }
/// <summary>
/// start
/// 星级
/// </summary>
[SugarColumn(IsNullable = true)]
public int? start { get; set; }
/// <summary>
/// exp
/// 0不需要鉴定 1需要鉴定
/// </summary>
[SugarColumn(IsNullable = true)]
public int? exp { get; set; }
public int? isAppr { get; set; }
/// <summary>
/// startAttr
/// 是否穿戴
/// </summary>
[SugarColumn(IsNullable = true)]
public string? startAttr { get; set; }
/// <summary>
/// swallow
/// </summary>
[SugarColumn(IsNullable = true)]
public string? swallow { get; set; }
public int? isOn { get; set; }
}
}