增加属性

This commit is contained in:
WenG 2022-06-16 15:43:26 +08:00
parent 703ca037c0
commit 779b624b41

View File

@ -13,6 +13,8 @@ public class UpdateMenuBO {
private String menuUrl;
private String menuOrder;
private String menuStatus;
private Integer menuType;
private Integer openType;
public String getMenuName() {
return menuName == null ? "" : menuName.trim();
@ -45,4 +47,20 @@ public class UpdateMenuBO {
public void setMenuStatus(String menuStatus) {
this.menuStatus = menuStatus;
}
public Integer getMenuType() {
return menuType;
}
public void setMenuType(Integer menuType) {
this.menuType = menuType;
}
public Integer getOpenType() {
return openType;
}
public void setOpenType(Integer openType) {
this.openType = openType;
}
}