📄 menu.java
字号:
package com.je.ims.hibernate;
/**
* Menu generated by MyEclipse - Hibernate Tools
*/
public class Menu implements java.io.Serializable {
// Fields
private String menuId;
private String menuName;
private String baseItem;
private Long showId;
private Long isDirectory;
private Long lvl;
private String program;
// Constructors
/** default constructor */
public Menu() {
}
/** minimal constructor */
public Menu(String menuId, String menuName, String baseItem, Long showId, Long isDirectory, Long lvl) {
this.menuId = menuId;
this.menuName = menuName;
this.baseItem = baseItem;
this.showId = showId;
this.isDirectory = isDirectory;
this.lvl = lvl;
}
/** full constructor */
public Menu(String menuId, String menuName, String baseItem, Long showId, Long isDirectory, Long lvl, String program) {
this.menuId = menuId;
this.menuName = menuName;
this.baseItem = baseItem;
this.showId = showId;
this.isDirectory = isDirectory;
this.lvl = lvl;
this.program = program;
}
// Property accessors
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String menuId) {
this.menuId = menuId;
}
public String getMenuName() {
return this.menuName;
}
public void setMenuName(String menuName) {
this.menuName = menuName;
}
public String getBaseItem() {
return this.baseItem;
}
public void setBaseItem(String baseItem) {
this.baseItem = baseItem;
}
public Long getShowId() {
return this.showId;
}
public void setShowId(Long showId) {
this.showId = showId;
}
public Long getIsDirectory() {
return this.isDirectory;
}
public void setIsDirectory(Long isDirectory) {
this.isDirectory = isDirectory;
}
public Long getLvl() {
return this.lvl;
}
public void setLvl(Long lvl) {
this.lvl = lvl;
}
public String getProgram() {
return this.program;
}
public void setProgram(String program) {
this.program = program;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -