//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2023-02-13 10:33:05 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 using System; using IRaCIS.Core.Domain.Share; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models { /// ///ShortcutKey /// [Table("ShortcutKey")] public class ShortcutKey : Entity, IAuditAdd { /// /// 对应的键盘按键 /// public string Keyboardkey { get; set; } = string.Empty; /// /// 按键枚举 /// public int ShortcutKeyEnum { get; set; } /// /// 影像工具类型 /// public int ImageToolType { get; set; } /// /// CreateTime /// public DateTime CreateTime { get; set; } /// /// CreateUserId /// public Guid CreateUserId { get; set; } public Guid UserId { get; set; } public bool AltKey { get; set; } = false; public bool CtrlKey { get; set; } = false; public bool ShiftKey { get; set; } = false; public bool MetaKey { get; set; } = false; public string Text { get; set; } public string Code { get; set; } = string.Empty; } }