using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DM_Weight.Models { [SugarTable("SettingPage")] public class SettingPage { [SugarColumn(ColumnName = "Id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 页面名称 /// [SugarColumn(ColumnName = "Name")] public string Name { get; set; } /// /// 页面连接 /// [SugarColumn(ColumnName = "Url")] public string Url { get; set; } /// ///可用标志 /// [SugarColumn(ColumnName = "Flag")] public string Flag { get; set; } /// /// view名称 /// [SugarColumn(ColumnName = "ViewName")] public string ViewName { get; set; } /// /// 图标名称 /// [SugarColumn(ColumnName = "IconName")] public string Icon { get; set; } /// /// 层级 /// [SugarColumn(ColumnName = "Level")] public int Level { get; set; } /// /// 父级id /// [SugarColumn(ColumnName = "Parentid")] public int Parentid { get; set; } /// /// 0可用1不可用 /// [SugarColumn(ColumnName = "State")] public int State { get; set; } } }