修改访视名称验证和 搜索条件

This commit is contained in:
2022-05-30 14:30:40 +08:00
parent 8e7dab028e
commit 316c9f779b
12 changed files with 325 additions and 275 deletions
+7 -6
View File
@@ -12,6 +12,13 @@ namespace IRaCIS.Core.Domain.Models
public List<DoctorDictionary> DoctorDicRelationList { get; set; } = new List<DoctorDictionary>();
public string ChildGroup { get; set; }
public int ChildCodeEnum { get; set; }
public DicDataTypeEnum DataTypeEnum { get; set; }
[Column("Value")]
public string Value { get; set; } = string.Empty;
@@ -25,7 +32,6 @@ namespace IRaCIS.Core.Domain.Models
public int ShowOrder { get; set; }
public string ChildGroup { get; set; }
public Guid UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; }
@@ -52,11 +58,6 @@ namespace IRaCIS.Core.Domain.Models
[ForeignKey("ParentId")]
public Dictionary Parent { get; set; }
public int ChildCodeEnum { get; set; }
[StringLength(50)]
public string KeyName { get; set; } = string.Empty;
[NotMapped]