同步数据模型和数据库对应关系1
continuous-integration/drone/push Build is passing

This commit is contained in:
hang
2024-09-19 21:56:36 +08:00
parent d789c48004
commit 19f4385055
71 changed files with 3016 additions and 3469 deletions
@@ -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;
}
}