//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.Text; namespace OpenAuth.Domain { /// /// 角色表 /// public partial class Role { 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; } /// /// 流水号 /// 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; } } }