📄 systemmenulist.java
字号:
package com.QualityTrack.subsystem.User.Bean;
/**
* SystemMenuList entity.
*
* @author MyEclipse Persistence Tools
*/
public class SystemMenuList implements java.io.Serializable {
private static final long serialVersionUID = 010002L;
// Fields
private Integer id;
private Integer menuId;
private String menuName;
private String menuImage;
private String menuUrl;
private String menuInfo;
// Constructors
/** default constructor */
public SystemMenuList() {
}
/** minimal constructor */
public SystemMenuList(Integer id) {
this.id = id;
}
/** full constructor */
public SystemMenuList(Integer id, Integer menuId, String menuName,
String menuImage, String menuUrl, String menuInfo) {
this.id = id;
this.menuId = menuId;
this.menuName = menuName;
this.menuImage = menuImage;
this.menuUrl = menuUrl;
this.menuInfo = menuInfo;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getMenuId() {
return this.menuId;
}
public void setMenuId(Integer menuId) {
this.menuId = menuId;
}
public String getMenuName() {
return this.menuName;
}
public void setMenuName(String menuName) {
this.menuName = menuName;
}
public String getMenuImage() {
return this.menuImage;
}
public void setMenuImage(String menuImage) {
this.menuImage = menuImage;
}
public String getMenuUrl() {
return this.menuUrl;
}
public void setMenuUrl(String menuUrl) {
this.menuUrl = menuUrl;
}
public String getMenuInfo() {
return this.menuInfo;
}
public void setMenuInfo(String menuInfo) {
this.menuInfo = menuInfo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -