//------------------------------------------------------------------------------
//
// 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;
namespace OpenAuth.Domain
{
///
/// 角色表
///
public partial class Role :Entity
{
public Role()
{
this.Name= string.Empty;
this.Status= 0;
this.Type= 0;
this.CreateTime= DateTime.Now;
this.CreateId= string.Empty;
}
///
/// 角色名称
///
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; }
}
}