@@ -7,48 +7,38 @@ using System;
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("用户配置 - 快捷键")]
|
||||
[Table("ShortcutKey")]
|
||||
public class ShortcutKey : BaseAddAuditEntity
|
||||
{
|
||||
///<summary>
|
||||
///ShortcutKey
|
||||
///</summary>
|
||||
[Table("ShortcutKey")]
|
||||
public class ShortcutKey : BaseAddAuditEntity
|
||||
{
|
||||
#region 导航属性
|
||||
#region 导航属性
|
||||
|
||||
#endregion
|
||||
/// <summary>
|
||||
/// 对应的键盘按键
|
||||
/// </summary>
|
||||
public string Keyboardkey { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 按键枚举
|
||||
/// </summary>
|
||||
public int ShortcutKeyEnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 影像工具类型
|
||||
/// </summary>
|
||||
public int ImageToolType { get; set; }
|
||||
|
||||
#endregion
|
||||
public bool AltKey { get; set; }
|
||||
|
||||
public Guid UserId { get; set; }
|
||||
public string Code { get; set; } = null!;
|
||||
|
||||
public bool AltKey { get; set; } = false;
|
||||
public bool CtrlKey { get; set; }
|
||||
|
||||
public bool CtrlKey { get; set; } = false;
|
||||
[Comment("影像工具类型")]
|
||||
public int ImageToolType { get; set; }
|
||||
|
||||
public bool ShiftKey { get; set; } = false;
|
||||
public string Keyboardkey { get; set; } = null!;
|
||||
|
||||
public bool MetaKey { get; set; } = false;
|
||||
public bool MetaKey { get; set; }
|
||||
|
||||
public string Text { get; set; } = string.Empty;
|
||||
public bool ShiftKey { get; set; }
|
||||
[Comment("按键枚举")]
|
||||
public int ShortcutKeyEnum { get; set; }
|
||||
|
||||
public string Text { get; set; } = null!;
|
||||
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public string Code { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user