懒羊羊
2023-08-30 71e81ed1d12e4d69f53c8ad9e066650ad4186293
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.sys.modular.system.model;
2
3 import lombok.Data;
4
5 import java.io.Serializable;
6
7 /**
8  * <p>
9  * 菜单表
10  * </p>
11  *
12  * @author stylefeng
13  * @since 2018-12-07
14  */
15 @Data
16 public class MenuDto implements Serializable {
17
18     private static final long serialVersionUID = 1L;
19
20     /**
21      * 主键id
22      */
23     private Long menuId;
24
25     public static long getSerialVersionUID() {
26         return serialVersionUID;
27     }
28
29     public Long getMenuId() {
30         return menuId;
31     }
32
33     public void setMenuId(Long menuId) {
34         this.menuId = menuId;
35     }
36
37     public String getCode() {
38         return code;
39     }
40
41     public void setCode(String code) {
42         this.code = code;
43     }
44
45     public Long getPid() {
46         return pid;
47     }
48
49     public void setPid(Long pid) {
50         this.pid = pid;
51     }
52
53     public String getPcode() {
54         return pcode;
55     }
56
57     public void setPcode(String pcode) {
58         this.pcode = pcode;
59     }
60
61     public String getPcodeName() {
62         return pcodeName;
63     }
64
65     public void setPcodeName(String pcodeName) {
66         this.pcodeName = pcodeName;
67     }
68
69     public String getName() {
70         return name;
71     }
72
73     public void setName(String name) {
74         this.name = name;
75     }
76
77     public String getIcon() {
78         return icon;
79     }
80
81     public void setIcon(String icon) {
82         this.icon = icon;
83     }
84
85     public String getUrl() {
86         return url;
87     }
88
89     public void setUrl(String url) {
90         this.url = url;
91     }
92
93     public Integer getSort() {
94         return sort;
95     }
96
97     public void setSort(Integer sort) {
98         this.sort = sort;
99     }
100
101     public Integer getLevels() {
102         return levels;
103     }
104
105     public void setLevels(Integer levels) {
106         this.levels = levels;
107     }
108
109     public String getMenuFlag() {
110         return menuFlag;
111     }
112
113     public void setMenuFlag(String menuFlag) {
114         this.menuFlag = menuFlag;
115     }
116
117     public String getDescription() {
118         return description;
119     }
120
121     public void setDescription(String description) {
122         this.description = description;
123     }
124
125     public String getSystemType() {
126         return systemType;
127     }
128
129     public void setSystemType(String systemType) {
130         this.systemType = systemType;
131     }
132
133     /**
134      * 菜单编号
135      */
136     private String code;
137     /**
138      * 菜单父级id
139      */
140     private Long pid;
141     /**
142      * 菜单父编号
143      */
144     private String pcode;
145     /**
146      * 菜单父级名称
147      */
148     private String pcodeName;
149     /**
150      * 菜单名称
151      */
152     private String name;
153     /**
154      * 菜单图标
155      */
156     private String icon;
157     /**
158      * url地址
159      */
160     private String url;
161     /**
162      * 菜单排序号
163      */
164     private Integer sort;
165     /**
166      * 菜单层级
167      */
168     private Integer levels;
169     /**
170      * 是否是菜单(字典)
171      */
172     private String menuFlag;
173     /**
174      * 备注
175      */
176     private String description;
177     /**
178      * 系统分类(字典)
179      */
180     private String systemType;
181
182 }