WangHan
2025-04-02 a8ba678a3fe5a39da2c732014cebbb66e408e97c
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
package com.iplatform.model.vo;
 
import java.util.List;
 
/**
 * 新界面菜单对象(电商)
 * @date 2023-05-12
 */
public class MenuVo {
 
    public Integer getIsShow() {
        return isShow;
    }
 
    public void setIsShow(Integer isShow) {
        this.isShow = isShow;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getPid() {
        return pid;
    }
 
    public void setPid(Long pid) {
        this.pid = pid;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public String getPerms() {
        return perms;
    }
 
    public void setPerms(String perms) {
        this.perms = perms;
    }
 
    public String getComponent() {
        return component;
    }
 
    public void setComponent(String component) {
        this.component = component;
    }
 
    public String getMenuType() {
        return menuType;
    }
 
    public void setMenuType(String menuType) {
        this.menuType = menuType;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    public List<MenuVo> getChildList() {
        return childList;
    }
 
    public void setChildList(List<MenuVo> childList) {
        this.childList = childList;
    }
 
    /**
     * 自定义图标:正常图标(相对路径)
     * @return
     * @date 2023-08-30
     */
    public String getIconNormal() {
        return iconNormal;
    }
 
    public void setIconNormal(String iconNormal) {
        this.iconNormal = iconNormal;
    }
 
    /**
     * 自定义图标:激活图标(相对路径)
     * @return
     * @date 2023-08-30
     */
    public String getIconActive() {
        return iconActive;
    }
 
    public void setIconActive(String iconActive) {
        this.iconActive = iconActive;
    }
 
    private String iconNormal;
    private String iconActive;
    private Long id;
    private Long pid;
    private String name;
    private String icon;
    private String perms;
    private String component;
    private String menuType;
    private Integer sort;
    private Integer isShow;
    private List<MenuVo> childList;
}