cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package cn.ksource.web.entity;
 
import java.io.Serializable;
import java.util.List;
import java.util.Map;
 
/**
 * 用户权限返回
 * @version V1.0.0
 * @author 杨凯
 * @date Feb 15, 2014 11:04:20 PM
 */
public class PermissionEntity implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = -4143421920276596591L;
 
    //一级功能列表
    private List<Map> yjgnList;
    
    //所有功能列表 格式为:Map<一级功能编号,List<Map<二级功能Entity,MENULIST<Map<三级功能实体>>>>>
    private Map gnMap;
    
    //所有权限的ID,作为map的key
    private Map qxMap;
    
    
    //存放所有能访问的链接Map<String,String> 链接为key 功能id为value
    private Map<String,Map> linkMap;
    
    
    //存放所有的二级功能列表
    private List<Map> ejgnList;
    
    //所有二级功能列表 格式为Map<二级功能编号,List<Map<三级功能实体>>>
    private Map<String,List<Map>> ejgnMap;
    
 
    public List<Map> getYjgnList() {
        return yjgnList;
    }
 
    public void setYjgnList(List<Map> yjgnList) {
        this.yjgnList = yjgnList;
    }
 
    public Map getGnMap() {
        return gnMap;
    }
 
    public void setGnMap(Map gnMap) {
        this.gnMap = gnMap;
    }
 
    public Map getQxMap() {
        return qxMap;
    }
 
    public void setQxMap(Map qxMap) {
        this.qxMap = qxMap;
    }
 
 
    public List<Map> getEjgnList() {
        return ejgnList;
    }
 
    public void setEjgnList(List<Map> ejgnList) {
        this.ejgnList = ejgnList;
    }
 
    public Map<String, List<Map>> getEjgnMap() {
        return ejgnMap;
    }
 
    public void setEjgnMap(Map<String, List<Map>> ejgnMap) {
        this.ejgnMap = ejgnMap;
    }
 
    public Map<String, Map> getLinkMap() {
        return linkMap;
    }
 
    public void setLinkMap(Map<String, Map> linkMap) {
        this.linkMap = linkMap;
    }
 
 
 
    
    
    
}