返回IsEncapsulated 给前端
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
hang 2025-08-11 16:00:03 +08:00
parent 955ecb116b
commit 12376a154e
2 changed files with 3 additions and 0 deletions

View File

@ -563,6 +563,7 @@ namespace IRaCIS.Core.Application.Contracts
public class DownloadDicomInstanceDto public class DownloadDicomInstanceDto
{ {
public bool IsEncapsulated { get; set; }
public Guid InstanceId { get; set; } public Guid InstanceId { get; set; }
public string FileName { get; set; } public string FileName { get; set; }
public string Path { get; set; } public string Path { get; set; }

View File

@ -875,6 +875,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
InstanceList = z.DicomInstanceList.Select(k => new DownloadDicomInstanceDto() InstanceList = z.DicomInstanceList.Select(k => new DownloadDicomInstanceDto()
{ {
IsEncapsulated = k.IsEncapsulated,
InstanceId = k.Id, InstanceId = k.Id,
FileName = string.Empty, FileName = string.Empty,
Path = k.Path, Path = k.Path,
@ -1180,6 +1181,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
InstanceList = z.DicomInstanceList.Where(t => t.IsReading).Select(k => new DownloadDicomInstanceDto() InstanceList = z.DicomInstanceList.Where(t => t.IsReading).Select(k => new DownloadDicomInstanceDto()
{ {
IsEncapsulated=k.IsEncapsulated,
InstanceId = k.Id, InstanceId = k.Id,
FileName = string.Empty, FileName = string.Empty,
Path = k.Path, Path = k.Path,