MenuModel.java
722 Bytes
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
package com.server.shiro.persistent.bean;
import java.util.List;
import java.util.Map;
/**
* Created by yinbinhome@163.com on 2018/3/1.
* description:
*/
public class MenuModel {
private String name;
private Long weight;
private List<Map<String,String>> menus;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Map<String, String>> getMenus() {
return menus;
}
public void setMenus(List<Map<String, String>> menus) {
this.menus = menus;
}
public Long getWeight() {
return weight;
}
public void setWeight(Long weight) {
this.weight = weight;
}
}