This commit is contained in:
he
2023-01-11 11:05:55 +08:00
parent 91f6c67cc6
commit 70679cbf17
4 changed files with 22 additions and 15 deletions
+5 -2
View File
@@ -188,9 +188,12 @@ namespace IRaCIS.Core.Domain.Models
[JsonIgnore]
public List<DoctorCriterionFile> CriterionFileList { get; set; }
[JsonIgnore]
public List<VisitTask> VisitTaskList { get; set; }
public User User { get; set; }
//[JsonIgnore]
//public List<VisitTask> VisitTaskList { get; set; }
public bool IsVirtual { get; set; }
+4
View File
@@ -78,6 +78,10 @@ namespace IRaCIS.Core.Domain.Models
//医生生成账号后,会有值
public Guid? DoctorId { get; set; }
[JsonIgnore]
[ForeignKey("DoctorId")]
public Doctor Doctor { get; set; }
public bool IsTestUser { get; set; }