Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details

Test_IRC_Net10
hang 2026-04-22 11:36:45 +08:00
commit 6315f1dc55
2 changed files with 4 additions and 0 deletions

View File

@ -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();

View File

@ -13,6 +13,9 @@ public class ShortcutKey : BaseAddAuditEntity
[Comment("按键枚举")]
public int ShortcutKeyEnum { get; set; }
/// <summary>
/// 1 Dicom 2非Dicom 3 视频
/// </summary>
[Comment("影像工具类型")]
public int ImageToolType { get; set; }
public Guid UserId { get; set; }