using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class PageElement { /// /// 用户ID /// /// public int Id { get; set; } /// /// DOM ID /// /// public string DomId { get; set; } /// /// 组织名称 /// /// public string Name { get; set; } /// /// 组织类型 /// /// public int Type { get; set; } /// /// 所属功能模块流水号 /// /// public int ModuleId { get; set; } /// /// 所属页面ID /// public int PageId { get; set; } /// /// 备注 /// /// public string Remark { get; set; } public PageElement() { this.Id= 0; this.DomId= string.Empty; this.Name= string.Empty; this.Type= 0; this.ModuleId= 0; this.Remark= string.Empty; } } }