using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class PageElementGrant { /// /// 用户ID /// /// public int Id { get; set; } /// /// 页面元素流水号 /// /// public int ElementId { get; set; } /// /// 用户流水号 /// /// public int UserId { get; set; } /// /// 角色流水号 /// /// public int RoleId { get; set; } /// /// 岗位流水号 /// /// public int PostId { get; set; } /// /// 权限类型 /// /// public int GrantType { get; set; } public PageElementGrant() { this.Id= 0; this.ElementId= 0; this.UserId= 0; this.RoleId= 0; this.PostId= 0; this.GrantType= 0; } } }