dangsn
2024-06-11 dba1e53cd7652f1b973ffec118e5b3312278c814
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
package com.vci.server.framework.systemConfig.specialRole;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
/**
 * 三员登录显示的模块对象
 * @author liudi
 *
 */
public class SpecialRoleObject implements Serializable{
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    private String logonUserId;
    private String logonRoleId;
    private String iconName;
    private String moduleName;
    private String panelName;
    private String moduleShowInfo;
    private List<SpecialRoleTreeObject> specialRoleTreeObjects = new ArrayList<SpecialRoleTreeObject>();
    
    public List<SpecialRoleTreeObject> getSpecialRoleTreeObjects() {
        return specialRoleTreeObjects;
    }
    public void setSpecialRoleTreeObjects(
            List<SpecialRoleTreeObject> specialRoleTreeObjects) {
        this.specialRoleTreeObjects = specialRoleTreeObjects;
    }
    public String getLogonUserId() {
        return logonUserId;
    }
    public void setLogonUserId(String logonUserId) {
        this.logonUserId = logonUserId;
    }
    public String getLogonRoleId() {
        return logonRoleId;
    }
    public void setLogonRoleId(String logonRoleId) {
        this.logonRoleId = logonRoleId;
    }
    public String getIconName() {
        return iconName;
    }
    public void setIconName(String iconName) {
        this.iconName = iconName;
    }
    public String getModuleName() {
        return moduleName;
    }
    public void setModuleName(String moduleName) {
        this.moduleName = moduleName;
    }
    public String getPanelName() {
        return panelName;
    }
    public void setPanelName(String panelName) {
        this.panelName = panelName;
    }
    public String getModuleShowInfo() {
        return moduleShowInfo;
    }
    public void setModuleShowInfo(String moduleShowInfo) {
        this.moduleShowInfo = moduleShowInfo;
    }
    
}