修改检查序列层级

IRC_NewDev
hang 2023-10-18 12:18:54 +08:00
parent e772407e38
commit 108be0bc23
1 changed files with 10 additions and 0 deletions

View File

@ -89,6 +89,9 @@ namespace IRaCIS.Core.Application.Service.Third_partyProject.DTO
public string StudyCode { get; set; }
public List<ModalitySeriesIdList> ModalitySeriesList => SeriesModalityList.GroupBy(t=>t.Modality).Select(g=>new ModalitySeriesIdList() { Modality= g.Key,SeriesIdList=g.Select(t=>t.SeriesId).ToList() }).ToList();
public List<SeriesModality> SeriesModalityList { get; set; }
}
@ -100,6 +103,13 @@ namespace IRaCIS.Core.Application.Service.Third_partyProject.DTO
public List<Guid> SeriesIdList { get; set; }
}
public class ModalitySeriesIdList
{
public string Modality { get; set; }
public List<Guid> SeriesIdList { get; set; }
}
public class SeriesModality
{
public Guid SeriesId { get; set; }