全面修改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,24 +7,21 @@
// Author:Yubao Li
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Domain
{
/// <summary>
/// 模块元素表(需要权限控制的按钮)
/// </summary>
public partial class ModuleElement
public partial class ModuleElement :Entity
{
public ModuleElement()
{
this.Id= 0;
this.DomId= string.Empty;
this.DomId= string.Empty;
this.Name= string.Empty;
this.Type= string.Empty;
this.ModuleId= 0;
this.Attr= string.Empty;
this.Script= string.Empty;
this.Icon= string.Empty;
@@ -33,10 +30,6 @@ namespace OpenAuth.Domain
this.Sort= 0;
}
/// <summary>
/// 流水号
/// </summary>
public int Id { get; set; }
/// <summary>
/// DOM ID
/// </summary>
@@ -49,10 +42,6 @@ namespace OpenAuth.Domain
/// 类型
/// </summary>
public string Type { get; set; }
/// <summary>
/// 功能模块Id
/// </summary>
public int ModuleId { get; set; }
/// <summary>
/// 元素附加属性
/// </summary>
@@ -77,6 +66,10 @@ namespace OpenAuth.Domain
/// 排序字段
/// </summary>
public int Sort { get; set; }
/// <summary>
///
/// </summary>
public System.Guid ModuleId { get; set; }
}
}