zhangf
2024-07-26 698995469a3fcdc3164fc486d18bdbe059b6c92e
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package com.gkhy.fourierSpecialGasMonitor.api.controller.sysAdmin.dto.req;
 
import java.util.List;
 
public class MenuItemMetaDTO {
    private String title;
 
    private String isLink;
 
    private Boolean isHide;
 
    private Boolean isKeepAlive;
 
    private Boolean isAffix;
 
    private Boolean isIframe;
 
    private String icon;
 
    private List<Long> roles;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getIsLink() {
        return isLink;
    }
 
    public void setIsLink(String isLink) {
        this.isLink = isLink;
    }
 
    public Boolean getIsHide() {
        return isHide;
    }
 
    public void setIsHide(Boolean hide) {
        isHide = hide;
    }
 
    public Boolean getIsKeepAlive() {
        return isKeepAlive;
    }
 
    public void setIsKeepAlive(Boolean keepAlive) {
        isKeepAlive = keepAlive;
    }
 
    public Boolean getIsAffix() {
        return isAffix;
    }
 
    public void setIsAffix(Boolean affix) {
        isAffix = affix;
    }
 
    public Boolean getIsIframe() {
        return isIframe;
    }
 
    public void setIsIframe(Boolean iframe) {
        isIframe = iframe;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public Boolean getHide() {
        return isHide;
    }
 
    public void setHide(Boolean hide) {
        isHide = hide;
    }
 
    public Boolean getKeepAlive() {
        return isKeepAlive;
    }
 
    public void setKeepAlive(Boolean keepAlive) {
        isKeepAlive = keepAlive;
    }
 
    public Boolean getAffix() {
        return isAffix;
    }
 
    public void setAffix(Boolean affix) {
        isAffix = affix;
    }
 
    public Boolean getIframe() {
        return isIframe;
    }
 
    public void setIframe(Boolean iframe) {
        isIframe = iframe;
    }
 
    public List<Long> getRoles() {
        return roles;
    }
 
    public void setRoles(List<Long> roles) {
        this.roles = roles;
    }
}