using SqlSugar; namespace NewPdaSqlServer.entity; /// /// 页面配置表 /// [SugarTable("MES_SYS_PAGEVIEW")] public class MesSysPageview { /// /// 主键 /// 默认值: (newid()) /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// 页面中文名 /// [SugarColumn(ColumnName = "PAGE_VIEW")] public string PageView { get; set; } /// /// 页面路径 /// [SugarColumn(ColumnName = "PATH")] public string Path { get; set; } /// /// 页面图标 /// [SugarColumn(ColumnName = "ICOIMG")] public string Icoimg { get; set; } /// /// [SugarColumn(ColumnName = "PAGE_GROUP")] public string PageGroup { get; set; } /// /// [SugarColumn(ColumnName = "PAGE_IDX")] public int? PageIdx { get; set; } /// /// [SugarColumn(ColumnName = "PAGE_STATUS")] public bool? PageStatus { get; set; } }