From a0747230ac8874763cda3a4e8e2c193d0afa783b Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Mon, 15 May 2023 10:08:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BA=8F=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs | 1 + IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs | 3 ++- IRaCIS.Core.Domain/Image/DicomSeries.cs | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs index ae3b4fa9b..86033717f 100644 --- a/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs +++ b/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/UnionStudyViewDodel.cs @@ -278,6 +278,7 @@ namespace IRaCIS.Core.Application.Contracts public string AcquisitionNumber { get; set; } = string.Empty; public string TriggerTime { get; set; } = string.Empty; + public string IamgeResizePath { get; set; } public List InstanceList { get; set; } diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs index 8afc1d48d..f75eceb3a 100644 --- a/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs +++ b/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs @@ -256,9 +256,10 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc else { //该序列掉了instance - dicomSeries.InstanceCount += seriesItem.InstanceCount; + dicomSeries.InstanceCount += seriesItem.InstanceCount; } + dicomSeries.IamgeResizePath = seriesItem.IamgeResizePath; foreach (var instanceItem in seriesItem.InstanceList) { diff --git a/IRaCIS.Core.Domain/Image/DicomSeries.cs b/IRaCIS.Core.Domain/Image/DicomSeries.cs index 1e4be2b3c..c7f0b2e13 100644 --- a/IRaCIS.Core.Domain/Image/DicomSeries.cs +++ b/IRaCIS.Core.Domain/Image/DicomSeries.cs @@ -61,5 +61,7 @@ namespace IRaCIS.Core.Domain.Models public bool IsDeleted {get;set;} public bool IsReading { get; set; } = true; + public string IamgeResizePath { get; set; } + } }