修改模型编码测试提交
continuous-integration/drone/push Build is running

This commit is contained in:
2026-03-10 11:37:48 +08:00
parent c906284f07
commit c1743c2934
31 changed files with 186 additions and 154 deletions
+4 -4
View File
@@ -1,11 +1,11 @@
using IRaCIS.Core.Domain.Share;
namespace IRaCIS.Core.Domain.Models;
[Comment("后台 - 字典表(需要同步)")]
[Comment("后台 - 字典表(需要同步)")]
[Table("Dictionary")]
public partial class Dictionary : BaseFullAuditEntity
{
#region
#region
[JsonIgnore]
public List<DoctorDictionary> DoctorDicRelationList { get; set; } = new List<DoctorDictionary>();
[JsonIgnore]
@@ -26,12 +26,12 @@ public partial class Dictionary : BaseFullAuditEntity
public Guid? ConfigTypeId { get; set; }
[Comment("字典类型- 枚举|bool|下拉框")]
[Comment("字典类型- 枚举|bool|下拉框")]
public DicDataTypeEnum DataTypeEnum { get; set; }
public string Description { get; set; } = null!;
[Comment("是否字典类型配置")]
[Comment("是否字典类型配置")]
public bool IsConfig { get; set; }
public bool IsEnable { get; set; }