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 CreateOrgId { get; set; }
///
/// 创建人所属部门节点语义ID
///
///
public string CreateOrgCascadeId { 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.CreateOrgId= 0;
this.CreateOrgCascadeId= string.Empty;
}
}
}