This commit is contained in:
tanglong 2025-07-09 15:47:21 +08:00
parent 5423f6ab84
commit b9399f168d
2 changed files with 7 additions and 2 deletions

View File

@ -203,8 +203,8 @@ namespace VOL.Entity.DomainModels
/// </summary> /// </summary>
[Display(Name = "等级")] [Display(Name = "等级")]
[Comment("等级")] [Comment("等级")]
[Column(TypeName = "nvarchar(100)")] [Column(TypeName = "int")]
public string Rank { get; set; } public int? Rank { get; set; }
/// <summary> /// <summary>
///错误个数[敏捷:错误个数] ///错误个数[敏捷:错误个数]

View File

@ -482,5 +482,10 @@ namespace VOL.Model.Ai
///正确个数 ///正确个数
/// </summary> /// </summary>
public int? JumpValue { get; set; } public int? JumpValue { get; set; }
/// <summary>
///等级
/// </summary>
public int? Rank { get; set; }
} }
} }