📄 systemmenuconjunction.java
字号:
package com.QualityTrack.subsystem.User.Bean;
/**
* SystemMenuConjunction entity.
*
* @author MyEclipse Persistence Tools
*/
public class SystemMenuConjunction implements java.io.Serializable {
private static final long serialVersionUID = 010001L;
// Fields
private Integer id;
private Integer userId;
private Integer userMenuId;
// Constructors
/** default constructor */
public SystemMenuConjunction() {
}
/** minimal constructor */
public SystemMenuConjunction(Integer id) {
this.id = id;
}
/** full constructor */
public SystemMenuConjunction(Integer id, Integer userId, Integer userMenuId) {
this.id = id;
this.userId = userId;
this.userMenuId = userMenuId;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getUserId() {
return this.userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Integer getUserMenuId() {
return this.userMenuId;
}
public void setUserMenuId(Integer userMenuId) {
this.userMenuId = userMenuId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -