mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 10:37:55 +08:00
全面修改Id为Guid类型,为2.0版做准备
This commit is contained in:
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user