?? employee.java
字號:
package cn.handson.base;
import java.util.HashSet;
import java.util.Set;
/**
* Employee generated by MyEclipse - Hibernate Tools
*/
public class Employee implements java.io.Serializable {
// Fields
private Integer employeeId;
private Depart depart;
private String employeeName;
private String employeeUsername;
private String employeePassword;
private String employeeRemark;
private Set constructs = new HashSet(0);
// Constructors
/** default constructor */
public Employee() {
}
/** minimal constructor */
public Employee(Depart depart, String employeeName, String employeeUsername, String employeePassword) {
this.depart = depart;
this.employeeName = employeeName;
this.employeeUsername = employeeUsername;
this.employeePassword = employeePassword;
}
/** full constructor */
public Employee(Depart depart, String employeeName, String employeeUsername, String employeePassword, String employeeRemark, Set constructs) {
this.depart = depart;
this.employeeName = employeeName;
this.employeeUsername = employeeUsername;
this.employeePassword = employeePassword;
this.employeeRemark = employeeRemark;
this.constructs = constructs;
}
// Property accessors
public Integer getEmployeeId() {
return this.employeeId;
}
public void setEmployeeId(Integer employeeId) {
this.employeeId = employeeId;
}
public Depart getDepart() {
return this.depart;
}
public void setDepart(Depart depart) {
this.depart = depart;
}
public String getEmployeeName() {
return this.employeeName;
}
public void setEmployeeName(String employeeName) {
this.employeeName = employeeName;
}
public String getEmployeeUsername() {
return this.employeeUsername;
}
public void setEmployeeUsername(String employeeUsername) {
this.employeeUsername = employeeUsername;
}
public String getEmployeePassword() {
return this.employeePassword;
}
public void setEmployeePassword(String employeePassword) {
this.employeePassword = employeePassword;
}
public String getEmployeeRemark() {
return this.employeeRemark;
}
public void setEmployeeRemark(String employeeRemark) {
this.employeeRemark = employeeRemark;
}
public Set getConstructs() {
return this.constructs;
}
public void setConstructs(Set constructs) {
this.constructs = constructs;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -