This commit is contained in:
2022-12-27 09:54:56 +08:00
parent 8b3711f755
commit a84ec3d4a1
4 changed files with 38 additions and 27 deletions
@@ -21,6 +21,8 @@ namespace IRaCIS.Core.Domain.Models
[ForeignKey("InstanceId")]
public DicomInstance Instance { get; set; }
/// <summary>
/// 第一层的Question
/// </summary>
@@ -150,11 +152,15 @@ namespace IRaCIS.Core.Domain.Models
public string RowMark { get; set; } = string.Empty;
//病灶答案表
[JsonIgnore]
public List<ReadingTableQuestionAnswer> LesionAnswerList { get; set; } = new List<ReadingTableQuestionAnswer>();
//[JsonIgnore]
//[ForeignKey("VisitTaskId")]
//public VisitTask VisitTask { get; set; }
}
//病灶答案表
[JsonIgnore]
public List<ReadingTableQuestionAnswer> LesionAnswerList { get; set; } = new List<ReadingTableQuestionAnswer>();
}
}