using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class Page { /// /// 用户ID /// /// public int Id { get; set; } /// /// 所属功能模块流水号 /// /// public int ModuleId { get; set; } /// /// 组织名称 /// /// public string Name { get; set; } /// /// 主页面URL /// /// public string Url { get; set; } /// /// 组织类型 /// /// public int Type { get; set; } /// /// 使能状态 /// /// public bool Enabled { get; set; } /// /// 是否缺省子页面 /// /// public bool IsDefault { get; set; } /// /// 小图标 /// /// public string Icon { get; set; } /// /// 大图标 /// /// public string IconBig { get; set; } /// /// 矢量图标 /// /// public string Vector { get; set; } /// /// 排序号 /// /// public int SortNo { get; set; } public Page() { this.Id= 0; this.ModuleId= 0; this.Name= string.Empty; this.Url= string.Empty; this.Type= 0; this.Enabled= false; this.IsDefault= false; this.Icon= string.Empty; this.IconBig= string.Empty; this.Vector= string.Empty; this.SortNo= 0; } } }