批量处理实体类空行
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-20 14:34:32 +08:00
parent 7524d39213
commit 718ddefe97
163 changed files with 0 additions and 1923 deletions
-10
View File
@@ -1,6 +1,4 @@
using IRaCIS.Core.Domain.Share;
namespace IRaCIS.Core.Domain.Models;
[Comment("后台 - 字典表(需要同步)")]
@@ -10,8 +8,6 @@ public partial class Dictionary : BaseFullAuditEntity
#region
[JsonIgnore]
public List<DoctorDictionary> DoctorDicRelationList { get; set; } = new List<DoctorDictionary>();
[JsonIgnore]
[ForeignKey("ConfigTypeId")]
public Dictionary ConfigDictionary { get; set; }
@@ -23,8 +19,6 @@ public partial class Dictionary : BaseFullAuditEntity
public List<Dictionary> ChildList { get; set; } = new List<Dictionary>();
#endregion
[StringLength(400)]
public string ChildGroup { get; set; } = null!;
@@ -52,8 +46,4 @@ public partial class Dictionary : BaseFullAuditEntity
[StringLength(400)]
public string ValueCN { get; set; } = null!;
}