同步数据模型和数据库对应关系2
continuous-integration/drone/push Build is passing

This commit is contained in:
hang
2024-09-19 23:45:43 +08:00
parent 19f4385055
commit 42e4fe59ec
73 changed files with 1760 additions and 1934 deletions
+15 -11
View File
@@ -25,26 +25,30 @@ namespace IRaCIS.Core.Domain.Models
#endregion
public string Name { get; set; }=string.Empty;
public string Value { get; set; } = string.Empty;
public BasicDataTypeEnum BasicDataTypeEnum { get; set; }
public string Description { get; set; } = string.Empty;
[StringLength(512)]
public string Code { get; set; } = null!;
public int ShowOrder { get; set; }
[StringLength(512)]
public string Description { get; set; } = null!;
public string Code { get; set; } = string.Empty;
public bool IsEnable { get; set; }
[StringLength(400)]
public string Name { get; set; } = null!;
public Guid? ParentId { get; set; }
public int ShowOrder { get; set; }
public string ValueCN { get; set; } = string.Empty;
[StringLength(512)]
public string Value { get; set; } = null!;
public bool IsEnable { get; set; }
[StringLength(512)]
public string ValueCN { get; set; } = null!;
public BasicDataTypeEnum BasicDataTypeEnum { get; set; }
}
}
}