2015-11-13 21:33:53 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Data;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace OpenAuth.Domain
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 用户ID
|
|
|
|
/// </summary>
|
2015-11-13 23:25:46 +08:00
|
|
|
public partial class ModuleElementGrant
|
2015-11-13 21:33:53 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 用户ID
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2015-11-30 11:58:18 +08:00
|
|
|
/// 元素流水号
|
2015-11-13 21:33:53 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
public int ElementId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 用户流水号
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
public int UserId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 角色流水号
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
public int RoleId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 权限类型
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
public int GrantType { get; set; }
|
|
|
|
|
|
|
|
|
2015-11-13 23:25:46 +08:00
|
|
|
public ModuleElementGrant()
|
2015-11-13 21:33:53 +08:00
|
|
|
{
|
2015-11-13 23:25:46 +08:00
|
|
|
this.Id= 0;
|
|
|
|
this.ElementId= 0;
|
|
|
|
this.UserId= 0;
|
|
|
|
this.RoleId= 0;
|
|
|
|
this.GrantType= 0;
|
|
|
|
}
|
2015-11-13 21:33:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2015-10-27 00:27:05 +08:00
|
|
|
}
|