MenuOperationBean.java
1.84 KB
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
package com.lijinji.call.bean;
import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Generated;
@Entity
public class MenuOperationBean {
private String menuName;
private int parentId;
private String url;
private String menuType;
private String perms;
private String remark;
private boolean hasPerm;
@Generated(hash = 340224058)
public MenuOperationBean(String menuName, int parentId, String url,
String menuType, String perms, String remark, boolean hasPerm) {
this.menuName = menuName;
this.parentId = parentId;
this.url = url;
this.menuType = menuType;
this.perms = perms;
this.remark = remark;
this.hasPerm = hasPerm;
}
@Generated(hash = 2096535730)
public MenuOperationBean() {
}
public String getMenuName() {
return this.menuName;
}
public void setMenuName(String menuName) {
this.menuName = menuName;
}
public int getParentId() {
return this.parentId;
}
public void setParentId(int parentId) {
this.parentId = parentId;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public String getMenuType() {
return this.menuType;
}
public void setMenuType(String menuType) {
this.menuType = menuType;
}
public String getPerms() {
return this.perms;
}
public void setPerms(String perms) {
this.perms = perms;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public boolean getHasPerm() {
return this.hasPerm;
}
public void setHasPerm(boolean hasPerm) {
this.hasPerm = hasPerm;
}
}