From 2008a1f10486ab54f048a369ba2801fb3ab9ccbf Mon Sep 17 00:00:00 2001
From: hang <872297557@qq.com>
Date: Thu, 23 Apr 2026 16:25:01 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E5=BE=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
IRaCIS.Core.Application/IRaCIS.Core.Application.xml | 6 +++---
.../Service/ImageAndDoc/StudyService.cs | 8 ++++----
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index d6bf0f90e..5e5dd9b03 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -17269,17 +17269,17 @@
- ����
+ 质疑
- һ���Ժ˲�
+ 一致性核查
- ����
+ 复制
diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs
index 708e93db1..c4250074b 100644
--- a/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs
+++ b/IRaCIS.Core.Application/Service/ImageAndDoc/StudyService.cs
@@ -106,14 +106,14 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
var prefix = path.Substring(1, path.LastIndexOf('/') - 1);
- var maskPath = $"{Path.GetFileName(path)}.MaskImage";
+ var maskPath = $"{Path.GetFileName(path)}.MaskDicom";
//清理缓存的里面的遮盖图,多次遮盖同一张图时,清除缓存很重要
await _oSSService.DeleteFromPrefix(maskPath, true);
- await _oSSService.UploadToOSSAsync(outPutStream, prefix, maskPath);
+ var tt = await _oSSService.UploadToOSSAsync(outPutStream, prefix, maskPath,false);
- var newPath = path + ".MaskImage";
+ var newPath = path + ".MaskDicom";
await _dicomInstanceRepository.BatchUpdateNoTrackingAsync(t => t.Id == item.Id, u => new DicomInstance() { Path= newPath, IsMasked = true });
}
@@ -160,7 +160,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
foreach (var item in idPathList)
{
- if (item.Path.EndsWith(".MaskImage"))
+ if (item.Path.EndsWith(".MaskDicom"))
{
var newPath = item.Path[..^10];