using System; using System.Collections.Generic; using System.Linq; 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; } } }