152 lines
2.8 KiB
Java
152 lines
2.8 KiB
Java
package wenrgise.common.bean;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class DynamicMenuBean implements Serializable {
|
|
String moduleId;
|
|
|
|
String moduleCode;
|
|
|
|
String moduleDesc;
|
|
|
|
String compId;
|
|
|
|
String compCode;
|
|
|
|
String queryFlg;
|
|
|
|
String insertFlg;
|
|
|
|
String updateFlg;
|
|
|
|
String dynamicMenu;
|
|
|
|
String hierchyLevel;
|
|
|
|
String compDesc;
|
|
|
|
String parentModuleId;
|
|
|
|
String screenName;
|
|
|
|
String actionName;
|
|
|
|
public DynamicMenuBean() {}
|
|
|
|
public DynamicMenuBean(String pDynamicMenu) {
|
|
this.dynamicMenu = pDynamicMenu;
|
|
}
|
|
|
|
public String getModuleId() {
|
|
return this.moduleId;
|
|
}
|
|
|
|
public void setModuleId(String newModuleId) {
|
|
this.moduleId = newModuleId;
|
|
}
|
|
|
|
public String getModuleCode() {
|
|
return this.moduleCode;
|
|
}
|
|
|
|
public void setModuleCode(String newModuleCode) {
|
|
this.moduleCode = newModuleCode;
|
|
}
|
|
|
|
public String getModuleDesc() {
|
|
return this.moduleDesc;
|
|
}
|
|
|
|
public void setModuleDesc(String newModuleDesc) {
|
|
this.moduleDesc = newModuleDesc;
|
|
}
|
|
|
|
public String getCompId() {
|
|
return this.compId;
|
|
}
|
|
|
|
public void setCompId(String newCompId) {
|
|
this.compId = newCompId;
|
|
}
|
|
|
|
public String getCompCode() {
|
|
return this.compCode;
|
|
}
|
|
|
|
public void setCompCode(String newCompCode) {
|
|
this.compCode = newCompCode;
|
|
}
|
|
|
|
public String getQueryFlg() {
|
|
return this.queryFlg;
|
|
}
|
|
|
|
public void setQueryFlg(String newQueryFlg) {
|
|
this.queryFlg = newQueryFlg;
|
|
}
|
|
|
|
public String getInsertFlg() {
|
|
return this.insertFlg;
|
|
}
|
|
|
|
public void setInsertFlg(String newInsertFlg) {
|
|
this.insertFlg = newInsertFlg;
|
|
}
|
|
|
|
public String getUpdateFlg() {
|
|
return this.updateFlg;
|
|
}
|
|
|
|
public void setUpdateFlg(String newUpdateFlg) {
|
|
this.updateFlg = newUpdateFlg;
|
|
}
|
|
|
|
public String getDynamicMenu() {
|
|
return this.dynamicMenu;
|
|
}
|
|
|
|
public void setDynamicMenu(String newDynamicMenu) {
|
|
this.dynamicMenu = newDynamicMenu;
|
|
}
|
|
|
|
public String getHierchyLevel() {
|
|
return this.hierchyLevel;
|
|
}
|
|
|
|
public void setHierchyLevel(String newHierchyLevel) {
|
|
this.hierchyLevel = newHierchyLevel;
|
|
}
|
|
|
|
public String getCompDesc() {
|
|
return this.compDesc;
|
|
}
|
|
|
|
public void setCompDesc(String newCompDesc) {
|
|
this.compDesc = newCompDesc;
|
|
}
|
|
|
|
public String getParentModuleId() {
|
|
return this.parentModuleId;
|
|
}
|
|
|
|
public void setParentModuleId(String newParentModuleId) {
|
|
this.parentModuleId = newParentModuleId;
|
|
}
|
|
|
|
public String getScreenName() {
|
|
return this.screenName;
|
|
}
|
|
|
|
public void setScreenName(String newScreenName) {
|
|
this.screenName = newScreenName;
|
|
}
|
|
|
|
public String getActionName() {
|
|
return this.actionName;
|
|
}
|
|
|
|
public void setActionName(String newActionName) {
|
|
this.actionName = newActionName;
|
|
}
|
|
}
|