mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-09 02:44:44 +08:00
全面修改Id为Guid类型,为2.0版做准备
This commit is contained in:
@@ -7,34 +7,27 @@
|
||||
// Author:Yubao Li
|
||||
// </autogenerated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace OpenAuth.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// 角色表
|
||||
/// </summary>
|
||||
public partial class Role
|
||||
public partial class Role :Entity
|
||||
{
|
||||
public Role()
|
||||
{
|
||||
this.Id= 0;
|
||||
this.Name= string.Empty;
|
||||
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;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
/// <summary>
|
||||
/// 角色名称
|
||||
/// </summary>
|
||||
@@ -55,10 +48,6 @@ namespace OpenAuth.Domain
|
||||
/// 创建人ID
|
||||
/// </summary>
|
||||
public string CreateId { get; set; }
|
||||
/// <summary>
|
||||
/// 所属部门流水号
|
||||
/// </summary>
|
||||
public int OrgId { get; set; }
|
||||
/// <summary>
|
||||
/// 所属部门节点语义ID
|
||||
/// </summary>
|
||||
@@ -67,6 +56,10 @@ namespace OpenAuth.Domain
|
||||
/// 所属部门名称
|
||||
/// </summary>
|
||||
public string OrgName { get; set; }
|
||||
/// <summary>
|
||||
/// 所属部门流水号
|
||||
/// </summary>
|
||||
public System.Guid? OrgId { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user