关键图里增加分割路径,支持下载
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
c3e9024a57
commit
84b65ee122
|
|
@ -849,9 +849,13 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public List<TrialKeyPicturePath> QuestionMarkPictureList { get; set; }
|
||||
|
||||
public List<TrialKeyPicturePath> TableQuestionRowPictureList { get; set; }
|
||||
|
||||
public List<TrialKeyPicturePath> SegmentationFileList { get; set; }
|
||||
}
|
||||
public class TrialKeyPicturePath
|
||||
{
|
||||
public string SegmentationName { get; set; }
|
||||
|
||||
public string PicturePath { get; set; }
|
||||
|
||||
public string OtherPicturePath { get; set; }
|
||||
|
|
|
|||
|
|
@ -2054,6 +2054,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
|||
|
||||
TableQuestionRowPictureList = t.LesionList.Select(c => new TrialKeyPicturePath { PicturePath = c.PicturePath, OtherPicturePath = c.OtherPicturePath }).ToList(),
|
||||
|
||||
SegmentationFileList = t.SegmentationList.Select(c => new TrialKeyPicturePath { PicturePath = c.SEGUrl, SegmentationName=c.SegmentationName, OtherPicturePath = string.Empty }).ToList(),
|
||||
|
||||
Id = t.Id,
|
||||
//裁判选择结果
|
||||
JudgeResultTaskId = t.JudgeVisitTask.JudgeResultTaskId,
|
||||
|
|
|
|||
|
|
@ -10,6 +10,9 @@ public class VisitTask : BaseFullAuditEntity
|
|||
{
|
||||
#region 导航属性
|
||||
|
||||
[JsonIgnore]
|
||||
public List<Segmentation> SegmentationList { get; set; } = new List<Segmentation>();
|
||||
|
||||
//针对肿瘤学任务的 导航属性,关联肿瘤学结果
|
||||
[JsonIgnore]
|
||||
public List<ReadingOncologyTaskInfo> OncologyResultList { get; set; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue