关键图里增加分割路径,支持下载
continuous-integration/drone/push Build is passing Details

Test_IRC_Net10
hang 2026-06-16 11:31:06 +08:00
parent c3e9024a57
commit 84b65ee122
3 changed files with 11 additions and 2 deletions

View File

@ -849,9 +849,13 @@ namespace IRaCIS.Core.Application.Contracts
public List<TrialKeyPicturePath> QuestionMarkPictureList { get; set; } public List<TrialKeyPicturePath> QuestionMarkPictureList { get; set; }
public List<TrialKeyPicturePath> TableQuestionRowPictureList { get; set; } public List<TrialKeyPicturePath> TableQuestionRowPictureList { get; set; }
public List<TrialKeyPicturePath> SegmentationFileList { get; set; }
} }
public class TrialKeyPicturePath public class TrialKeyPicturePath
{ {
public string SegmentationName { get; set; }
public string PicturePath { get; set; } public string PicturePath { get; set; }
public string OtherPicturePath { get; set; } public string OtherPicturePath { get; set; }

View File

@ -2054,6 +2054,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
TableQuestionRowPictureList = t.LesionList.Select(c => new TrialKeyPicturePath { PicturePath = c.PicturePath, OtherPicturePath = c.OtherPicturePath }).ToList(), 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, Id = t.Id,
//裁判选择结果 //裁判选择结果
JudgeResultTaskId = t.JudgeVisitTask.JudgeResultTaskId, JudgeResultTaskId = t.JudgeVisitTask.JudgeResultTaskId,

View File

@ -10,6 +10,9 @@ public class VisitTask : BaseFullAuditEntity
{ {
#region 导航属性 #region 导航属性
[JsonIgnore]
public List<Segmentation> SegmentationList { get; set; } = new List<Segmentation>();
//针对肿瘤学任务的 导航属性,关联肿瘤学结果 //针对肿瘤学任务的 导航属性,关联肿瘤学结果
[JsonIgnore] [JsonIgnore]
public List<ReadingOncologyTaskInfo> OncologyResultList { get; set; } public List<ReadingOncologyTaskInfo> OncologyResultList { get; set; }