From 12376a154e2d49f8fc5fde51b621f186dbeb844d Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Mon, 11 Aug 2025 16:00:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=94=E5=9B=9EIsEncapsulated=20=E7=BB=99?= =?UTF-8?q?=E5=89=8D=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs | 1 + .../Service/ImageAndDoc/DownloadAndUploadService.cs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs index acb2f868d..7babf13b4 100644 --- a/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs +++ b/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs @@ -563,6 +563,7 @@ namespace IRaCIS.Core.Application.Contracts public class DownloadDicomInstanceDto { + public bool IsEncapsulated { get; set; } public Guid InstanceId { get; set; } public string FileName { get; set; } public string Path { get; set; } diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs index 7fca3aebb..84480411d 100644 --- a/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs +++ b/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs @@ -875,6 +875,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc InstanceList = z.DicomInstanceList.Select(k => new DownloadDicomInstanceDto() { + IsEncapsulated = k.IsEncapsulated, InstanceId = k.Id, FileName = string.Empty, Path = k.Path, @@ -1180,6 +1181,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc InstanceList = z.DicomInstanceList.Where(t => t.IsReading).Select(k => new DownloadDicomInstanceDto() { + IsEncapsulated=k.IsEncapsulated, InstanceId = k.Id, FileName = string.Empty, Path = k.Path,