using SqlSugar; namespace Gs.Sys.Models; /// /// [SugarTable("SYS_MENU_ACTION")] public class SysMenuAction { /// /// 主键 /// [SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)] public Guid? Guid { get; set; } /// /// 父亲guid /// [SugarColumn(ColumnName = "UP_GUID")] public Guid? UpGuid { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "NAME")] public string Name { get; set; } /// /// 类型 /// [SugarColumn(ColumnName = "CATEGORY")] public int? Category { get; set; } /// /// 图标 /// [SugarColumn(ColumnName = "ICON")] public string Icon { get; set; } /// /// 路径 /// [SugarColumn(ColumnName = "FORM_PATH")] public string FormPath { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "IS_STATUS")] public bool? IsStatus { get; set; } /// /// 排名 /// [SugarColumn(ColumnName = "IDX")] public int? Idx { get; set; } /// /// 系统内置 /// [SugarColumn(ColumnName = "IS_SYS")] public int? IsSys { get; set; } /// /// 编辑时间 /// [SugarColumn(ColumnName = "EDT_TIME")] public DateTime? EdtTime { get; set; } [SugarColumn(IsIgnore = true)] //sqlsugar 忽略字段 public string CategoryTxt { get; set; } [SugarColumn(IsIgnore = true)] //sqlsugar 忽略字段 public string upName { get; set; } }