ludc
2024-08-23 b75e809d02809726382ed45b6c3c3394b091ec7e
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
 
package com.vci.pagemodel;
 
 
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
 
/**
 * 视图实体类
 *
 * @author Chill
 */
public class MenuVO implements Serializable {
    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 pathC;
 
    /**
     * resourceDotNet
     */
    private String resourceDotNet;
 
    /**
     * resourceDotMobile
     */
    private String resourceMobile;
 
    /**
     * 菜单资源
     */
    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 String modeType;
 
    /**
     * 是模块下子对象是模块还是操作:0表示无子节点,1表示是模块,2表示是操作
     */
    private Integer childType;
 
    /**
     * 1有效0无效:无效时,在功能权限界面不显示
     */
    private Boolean isValid;
 
    /**
     * 合并了functionOperate对象中的属性的模块的id
     */
    private String funcId;
 
    /**
     * 模块下关联的操作类型id
     */
    private String operId;
 
    /**
     * 前端是否隐藏
     */
    private HashMap<String,Boolean> meta = new HashMap<>();
 
    public void setFuncId(String funcId) {
        this.funcId = funcId;
    }
 
    public void setOperId(String operId) {
        this.operId = operId;
    }
 
    public String getFuncId() {
        return funcId;
    }
 
    public String getOperId() {
        return operId;
    }
 
    public void setPathC(String pathC) {
        this.pathC = pathC;
    }
 
    public void setResourceDotNet(String resourceDotNet) {
        this.resourceDotNet = resourceDotNet;
    }
 
    public void setResourceMobile(String resourceMobile) {
        this.resourceMobile = resourceMobile;
    }
 
    public void setValid(Boolean valid) {
        isValid = valid;
    }
 
    public String getPathC() {
        return pathC;
    }
 
    public String getResourceDotNet() {
        return resourceDotNet;
    }
 
    public String getResourceMobile() {
        return resourceMobile;
    }
 
    public Boolean getValid() {
        return isValid;
    }
 
    public void setIsValid(Boolean isValid) {
        this.isValid = isValid;
    }
 
    public Boolean getIsValid() {
        return isValid;
    }
 
    public void setChildType(Integer childType) {
        this.childType = childType;
    }
 
    public Integer getChildType() {
        return childType;
    }
 
    public String getModeType() {
        return modeType;
    }
 
    public void setModeType(String modeType) {
        this.modeType = modeType;
    }
 
    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;
    }
}