using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class Role { /// /// 用户ID /// /// public int Id { get; set; } /// /// 组织名称 /// /// public string Name { get; set; } /// /// 状态 /// /// public int Status { get; set; } /// /// 组织类型 /// /// public int Type { get; set; } /// /// 创建时间 /// /// public System.DateTime CreateTime { get; set; } /// /// 创建人ID /// /// public string CreateId { get; set; } /// /// 所属部门流水号 /// /// public int OrgId { get; set; } /// /// 所属部门节点语义ID /// /// public string OrgCascadeId { get; set; } /// /// 所属部门名称 /// /// public string OrgName { get; set; } public Role() { this.Id= 0; this.Name= string.Empty; this.Status= 0; this.Type= 0; this.CreateTime= DateTime.Now; this.CreateId= string.Empty; this.OrgId= 0; this.OrgCascadeId= string.Empty; this.OrgName= string.Empty; } } }