📄 jobs.java
字号:
package fmq.model.bo;
import java.util.HashSet;
import java.util.Set;
/**
* Jobs generated by MyEclipse Persistence Tools
*/
public class Jobs implements java.io.Serializable {
// Fields
private Short jobId;
private String jobDesc;
private Short minLvl;
private Short maxLvl;
private Set employees = new HashSet(0);
// Constructors
/** default constructor */
public Jobs() {
}
/** minimal constructor */
public Jobs(Short jobId, String jobDesc, Short minLvl, Short maxLvl) {
this.jobId = jobId;
this.jobDesc = jobDesc;
this.minLvl = minLvl;
this.maxLvl = maxLvl;
}
/** full constructor */
public Jobs(Short jobId, String jobDesc, Short minLvl, Short maxLvl,
Set employees) {
this.jobId = jobId;
this.jobDesc = jobDesc;
this.minLvl = minLvl;
this.maxLvl = maxLvl;
this.employees = employees;
}
// Property accessors
public Short getJobId() {
return this.jobId;
}
public void setJobId(Short jobId) {
this.jobId = jobId;
}
public String getJobDesc() {
return this.jobDesc;
}
public void setJobDesc(String jobDesc) {
this.jobDesc = jobDesc;
}
public Short getMinLvl() {
return this.minLvl;
}
public void setMinLvl(Short minLvl) {
this.minLvl = minLvl;
}
public Short getMaxLvl() {
return this.maxLvl;
}
public void setMaxLvl(Short maxLvl) {
this.maxLvl = maxLvl;
}
public Set getEmployees() {
return this.employees;
}
public void setEmployees(Set employees) {
this.employees = employees;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -