mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
65 lines
1.8 KiB
C#
65 lines
1.8 KiB
C#
//------------------------------------------------------------------------------
|
|
// <autogenerated>
|
|
// 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
|
|
// </autogenerated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
/// <summary>
|
|
/// 角色表
|
|
/// </summary>
|
|
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;
|
|
this.OrgCascadeId= string.Empty;
|
|
this.OrgName= string.Empty;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 角色名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// 当前状态
|
|
/// </summary>
|
|
public int Status { get; set; }
|
|
/// <summary>
|
|
/// 角色类型
|
|
/// </summary>
|
|
public int Type { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public System.DateTime CreateTime { get; set; }
|
|
/// <summary>
|
|
/// 创建人ID
|
|
/// </summary>
|
|
public string CreateId { get; set; }
|
|
/// <summary>
|
|
/// 所属部门节点语义ID
|
|
/// </summary>
|
|
public string OrgCascadeId { get; set; }
|
|
/// <summary>
|
|
/// 所属部门名称
|
|
/// </summary>
|
|
public string OrgName { get; set; }
|
|
/// <summary>
|
|
/// 所属部门流水号
|
|
/// </summary>
|
|
public System.Guid? OrgId { get; set; }
|
|
|
|
}
|
|
} |