namespace Yw.WinFrmUI.Page
{
///
/// 页面拥有权限树
///
public class PageAuthHaveTree
{
///
/// 权限标识
///
[Display(Name = "权限标识")]
public long AuthID { get; set; }
///
/// 拥有
///
[Display(Name = "拥有")]
public bool Have { get; set; }
///
/// 显示名称
///
[Display(Name = "名称")]
public string Name { get; set; }
///
/// 编码
///
[Display(Name = "编码")]
public string Code { get; set; }
///
/// 参数
///
[Display(Name = "参数")]
public Dictionary Paras { get; set; }
///
/// 标签名称
///
[Display(Name = "标签名称")]
public string Permission { get; set; }
///
/// 排序码
///
[Display(Name = "排序码")]
public int SortCode { get; set; }
///
/// 备注
///
[Display(Name = "备注")]
public string Description { get; set; }
///
/// 子权限
///
public List Children { get; set; }
}
}