using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class Org { /// /// 用户ID /// /// public int Id { get; set; } /// /// 节点语义ID /// /// public string CascadeId { get; set; } /// /// 组织名称 /// /// public string Name { get; set; } /// /// 热键 /// /// public string HotKey { get; set; } /// /// 父节点流水号 /// /// public int ParentId { get; set; } /// /// 父节点名称 /// /// public string ParentName { get; set; } /// /// 是否叶子节点 /// /// public bool IsLeaf { get; set; } /// /// 是否自动展开 /// /// public bool IsAutoExpand { get; set; } /// /// 节点图标文件名称 /// /// public string IconName { get; set; } /// /// 状态 /// /// public int Status { get; set; } /// /// 组织类型 /// /// public int Type { get; set; } /// /// 业务对照码 /// /// public string BizCode { get; set; } /// /// 自定义扩展码 /// /// public string CustomCode { get; set; } /// /// 创建时间 /// /// public System.DateTime CreateTime { get; set; } /// /// 创建人ID /// /// public int CreateId { get; set; } /// /// 排序号 /// /// public int SortNo { get; set; } public Org() { this.Id= 0; this.CascadeId= string.Empty; this.Name= string.Empty; this.HotKey= string.Empty; this.ParentId= 0; this.ParentName= string.Empty; this.IsLeaf= false; this.IsAutoExpand= false; this.IconName= string.Empty; this.Status= 0; this.Type= 0; this.BizCode= string.Empty; this.CustomCode= string.Empty; this.CreateTime= DateTime.Now; this.CreateId= 0; this.SortNo= 0; } } }