Ldc
2024-04-07 0652600959e5e3b5796fb6e8da129704ca95347a
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
 
package com.vci.frameworkcore.pagemodel;
 
 
import java.util.HashMap;
import java.util.List;
 
/**
 * 视图实体类
 *
 * @author Chill
 */
public class MenuVO  {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    private String id;
 
    /**
     * 父节点ID
     */
    private String parentId;
 
    /**
     * 子孙节点
     */
    private List<MenuVO> children;
 
    /**
     * 是否有子孙节点
     */
    private Boolean hasChildren;
 
 
    /**
     * 菜单编号
     */
    private String code;
 
    /**
     * 菜单名称
     */
    private String name;
 
    /**
     * 菜单别名
     */
    private String alias;
 
    /**
     * 请求地址
     */
    private String path;
 
    /**
     * 菜单资源
     */
    private String source;
 
    /**
     * 排序
     */
    private Integer sort;
 
    /**
     * 菜单类型
     */
    private Integer category;
 
    /**
     * 操作按钮类型
     */
    private Integer action;
 
    /**
     * 是否打开新页面
     */
    private Integer isOpen;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 上级菜单
     */
    private String parentName;
 
    /**
     * 菜单类型
     */
    private String categoryName;
 
    /**
     * 按钮功能
     */
    private String actionName;
 
    /**
     * 是否新窗口打开
     */
    private String isOpenName;
    /**
     * 前端是否隐藏
     */
    private HashMap<String,Boolean> meta = new HashMap<>();
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getParentId() {
        return parentId;
    }
 
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
 
    public List<MenuVO> getChildren() {
        return children;
    }
 
    public void setChildren(List<MenuVO> children) {
        this.children = children;
    }
 
    public Boolean getHasChildren() {
        return hasChildren;
    }
 
    public void setHasChildren(Boolean hasChildren) {
        this.hasChildren = hasChildren;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getAlias() {
        return alias;
    }
 
    public void setAlias(String alias) {
        this.alias = alias;
    }
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
 
    public String getSource() {
        return source;
    }
 
    public void setSource(String source) {
        this.source = source;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    public Integer getCategory() {
        return category;
    }
 
    public void setCategory(Integer category) {
        this.category = category;
    }
 
    public Integer getAction() {
        return action;
    }
 
    public void setAction(Integer action) {
        this.action = action;
    }
 
    public Integer getIsOpen() {
        return isOpen;
    }
 
    public void setIsOpen(Integer isOpen) {
        this.isOpen = isOpen;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getParentName() {
        return parentName;
    }
 
    public void setParentName(String parentName) {
        this.parentName = parentName;
    }
 
    public String getCategoryName() {
        return categoryName;
    }
 
    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName;
    }
 
    public String getActionName() {
        return actionName;
    }
 
    public void setActionName(String actionName) {
        this.actionName = actionName;
    }
 
    public String getIsOpenName() {
        return isOpenName;
    }
 
    public void setIsOpenName(String isOpenName) {
        this.isOpenName = isOpenName;
    }
 
    public HashMap<String, Boolean> getMeta() {
        return meta;
    }
 
    public void setMeta(HashMap<String, Boolean> meta) {
        this.meta = meta;
    }
}