全面修改Id为Guid类型,为2.0版做准备

This commit is contained in:
yubaolee
2016-09-02 18:05:17 +08:00
parent a8fd59e247
commit 574f5f9e1f
327 changed files with 10071 additions and 18206 deletions

View File

@@ -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; }
}
}