lixiaojun
2025-01-22 46f64905a3c309a50c0f245b3350cdeb8dd699c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.Collections.Generic;
using System.Diagnostics.Eventing.Reader;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Yw.WinFrmUI.Page
{
    /// <summary>
    /// 页面拥有权限树
    /// </summary>
    public class PageAuthHaveTree
    {
        /// <summary>
        /// 权限标识
        /// </summary>
        [Display(Name = "权限标识")]
        public long AuthID { get; set; }
 
        /// <summary>
        /// 拥有
        /// </summary>
        [Display(Name = "拥有")]
        public bool Have { get; set; }
 
        /// <summary>
        /// 显示名称
        /// </summary>
        [Display(Name = "名称")]
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        [Display(Name = "编码")]
        public string Code { get; set; }
 
        /// <summary>
        /// 参数
        /// </summary>
        [Display(Name = "参数")]
        public Dictionary<string, string> Paras { get; set; }
 
        /// <summary>
        /// 标签名称
        /// </summary>
        [Display(Name = "标签名称")]
        public string Permission { get; set; }
 
        /// <summary>
        /// 排序码
        /// </summary>
        [Display(Name = "排序码")]
        public int SortCode { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [Display(Name = "备注")]
        public string Description { get; set; }
 
        /// <summary>
        /// 子权限
        /// </summary>
        public List<PageAuthHaveTree> Children { get; set; }
    }
}