修改一版

This commit is contained in:
he
2023-01-10 17:37:12 +08:00
parent 1a5c2806e0
commit 50527d9c33
4 changed files with 61 additions and 4 deletions
+2
View File
@@ -185,6 +185,8 @@ namespace IRaCIS.Core.Domain.Models
public virtual Dictionary Position { get; set; }
[JsonIgnore]
public List<Attachment> AttachmentList { get; set; }
[JsonIgnore]
public List<DoctorCriterionFile> CriterionFileList { get; set; }
public bool IsVirtual { get; set; }
@@ -55,8 +55,12 @@ namespace IRaCIS.Core.Domain.Models
/// CreateTime
/// </summary>
public DateTime CreateTime { get; set; }
}
[JsonIgnore]
[ForeignKey("DoctorId")]
public Doctor Doctor { get; set; }
}
}