@@ -1,44 +1,49 @@
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
// 此代码由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;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("用户配置 - 快捷键")]
|
||||
[Table("ShortcutKey")]
|
||||
public class ShortcutKey : BaseAddAuditEntity
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
#region 导航属性
|
||||
///<summary>
|
||||
///ShortcutKey
|
||||
///</summary>
|
||||
[Table("ShortcutKey")]
|
||||
public class ShortcutKey : BaseAddAuditEntity
|
||||
{
|
||||
#region 导航属性
|
||||
|
||||
#endregion
|
||||
public bool AltKey { get; set; }
|
||||
#endregion
|
||||
/// <summary>
|
||||
/// 对应的键盘按键
|
||||
/// </summary>
|
||||
public string Keyboardkey { get; set; } = string.Empty;
|
||||
|
||||
public string Code { get; set; } = null!;
|
||||
/// <summary>
|
||||
/// 按键枚举
|
||||
/// </summary>
|
||||
public int ShortcutKeyEnum { get; set; }
|
||||
|
||||
public bool CtrlKey { get; set; }
|
||||
/// <summary>
|
||||
/// 影像工具类型
|
||||
/// </summary>
|
||||
public int ImageToolType { get; set; }
|
||||
|
||||
[Comment("影像工具类型")]
|
||||
public int ImageToolType { get; set; }
|
||||
|
||||
public string Keyboardkey { get; set; } = null!;
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
public bool MetaKey { get; set; }
|
||||
public bool AltKey { get; set; } = false;
|
||||
|
||||
public bool ShiftKey { get; set; }
|
||||
[Comment("按键枚举")]
|
||||
public int ShortcutKeyEnum { get; set; }
|
||||
public bool CtrlKey { get; set; } = false;
|
||||
|
||||
public string Text { get; set; } = null!;
|
||||
public bool ShiftKey { get; set; } = false;
|
||||
|
||||
public bool MetaKey { get; set; } = false;
|
||||
|
||||
public string Text { get; set; } = string.Empty;
|
||||
|
||||
public string Code { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,34 +1,41 @@
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
// 此代码由T4模板自动生成 byzhouhang 20210918
|
||||
// 生成时间 2023-05-08 15:14:38
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||
using System;
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("用户配置 - WL模板")]
|
||||
[Table("UserWLTemplate")]
|
||||
public class UserWLTemplate : BaseAddAuditEntity
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
#region 导航属性
|
||||
///<summary>
|
||||
///UserWLTemplate
|
||||
///</summary>
|
||||
[Table("UserWLTemplate")]
|
||||
public class UserWLTemplate : BaseAddAuditEntity
|
||||
{
|
||||
#region 导航属性
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
public string TemplateName { get; set; } = string.Empty;
|
||||
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
public int WW { get; set; }
|
||||
|
||||
public int WL { get; set; }
|
||||
|
||||
public int ShowOrder { get; set; } = 0;
|
||||
public string TemplateName { get; set; } = string.Empty;
|
||||
|
||||
|
||||
public bool IsPitchOn { get; set; } = true;
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
public int WW { get; set; }
|
||||
|
||||
|
||||
public int WL { get; set; }
|
||||
|
||||
|
||||
public int ShowOrder { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 是否为默认
|
||||
/// </summary>
|
||||
public bool IsPitchOn { get; set; } = true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user