//--------------------------------------------------------------------
// 此代码由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
{
///
///DefaultShortcutKey
///
[Table("DefaultShortcutKey")]
public class DefaultShortcutKey : Entity, IAuditUpdate, 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; }
}
}