From dee2cae1269c5b2ce00e16d1cc1e6d25602e585e Mon Sep 17 00:00:00 2001
From: he <109787524@qq.com>
Date: Wed, 22 Apr 2026 11:20:04 +0800
Subject: [PATCH] =?UTF-8?q?=E9=98=85=E7=89=87=E5=B7=A5=E5=85=B7=E4=BF=AE?=
=?UTF-8?q?=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../IRaCIS.Core.Application.xml | 30 +++++++++++++++++++
.../Reading/ShortcutKey/ShortcutKeyService.cs | 1 +
.../Reading/ShortcutKey/DefaultShortcutKey.cs | 3 ++
3 files changed, 34 insertions(+)
diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index 2fcc01c40..5ae5f6ad1 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -19583,6 +19583,36 @@
影像质控风险控制
+
+
+ 性别
+
+
+
+
+ 体重
+
+
+
+
+ 总剂量
+
+
+
+
+ 半衰期
+
+
+
+
+ 注射时间
+
+
+
+
+ 成像 / 采集时间
+
+
SystemBasicDataService
diff --git a/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs b/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs
index 502f937ed..7b7c2e0d0 100644
--- a/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs
@@ -33,6 +33,7 @@ namespace IRaCIS.Core.Application.Service
var defaultshortcutKeyList = this.GetDefaultShortcutKey();
var shortcutKeydic = await _dictionaryRepository.Where(x => x.Parent.Code == "ShortcutKey")
+ .Where(x=>x.ChildGroup.Contains(inQuery.ImageToolType.ToString()))
.WhereIf(inQuery.ShortcutKeyEnum != null, x => x.Code == inQuery.ShortcutKeyEnum.ToString()).ToListAsync();
diff --git a/IRaCIS.Core.Domain/Reading/ShortcutKey/DefaultShortcutKey.cs b/IRaCIS.Core.Domain/Reading/ShortcutKey/DefaultShortcutKey.cs
index 7d2fa655c..33a777df1 100644
--- a/IRaCIS.Core.Domain/Reading/ShortcutKey/DefaultShortcutKey.cs
+++ b/IRaCIS.Core.Domain/Reading/ShortcutKey/DefaultShortcutKey.cs
@@ -13,6 +13,9 @@ public class ShortcutKey : BaseAddAuditEntity
[Comment("按键枚举")]
public int ShortcutKeyEnum { get; set; }
+ ///
+ /// 1 Dicom 2非Dicom 3 视频
+ ///
[Comment("影像工具类型")]
public int ImageToolType { get; set; }
public Guid UserId { get; set; }