实体标注,修改默认长度
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-24 17:57:45 +08:00
parent 4d206ebf9d
commit 1da4fbe23b
21 changed files with 75 additions and 88 deletions
+3 -4
View File
@@ -19,7 +19,7 @@ public partial class Dictionary : BaseFullAuditEntity
public List<Dictionary> ChildList { get; set; } = new List<Dictionary>();
#endregion
[StringLength(400)]
public string ChildGroup { get; set; } = null!;
public string Code { get; set; } = null!;
@@ -29,7 +29,6 @@ public partial class Dictionary : BaseFullAuditEntity
[Comment("字典类型- 枚举|bool|下拉框")]
public DicDataTypeEnum DataTypeEnum { get; set; }
[StringLength(512)]
public string Description { get; set; } = null!;
[Comment("是否字典类型配置")]
@@ -41,9 +40,9 @@ public partial class Dictionary : BaseFullAuditEntity
public int ShowOrder { get; set; }
[StringLength(400)]
public string Value { get; set; } = null!;
[StringLength(400)]
public string ValueCN { get; set; } = null!;
}