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
continuous-integration/drone/push Build is passing
Details
commit
6315f1dc55
|
|
@ -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();
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue