📄 employee.java
字号:
package com.pet.pojo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Employee generated by MyEclipse Persistence Tools
*/
public class Employee implements java.io.Serializable {
private static final long serialVersionUID = 2623913381308994424L;
private Integer eid;
private Clinique clinique;
private String employeeCode;
private String employeeName;
private String passWord;
private String employeeAddr;
private String employeeTelephone;
private Date employeeBirth;
private String employeeSex;
private String insuranceNo;
private String employeePosition;
private Double salaryYear;
private Set<Examination> examinations = new HashSet<Examination>(0);
/** default constructor */
public Employee() {
}
/** full constructor */
public Employee(Clinique clinique, String employeeCode,
String employeeName, String passWord, String employeeAddr,
String employeeTelephone, Date employeeBirth, String employeeSex,
String insuranceNo, String employeePosition, Double salaryYear,
Set<Examination> examinations) {
this.clinique = clinique;
this.employeeCode = employeeCode;
this.employeeName = employeeName;
this.passWord = passWord;
this.employeeAddr = employeeAddr;
this.employeeTelephone = employeeTelephone;
this.employeeBirth = employeeBirth;
this.employeeSex = employeeSex;
this.insuranceNo = insuranceNo;
this.employeePosition = employeePosition;
this.salaryYear = salaryYear;
this.examinations = examinations;
}
public Integer getEid() {
return this.eid;
}
public void setEid(Integer eid) {
this.eid = eid;
}
public Clinique getClinique() {
return this.clinique;
}
public void setClinique(Clinique clinique) {
this.clinique = clinique;
}
public String getEmployeeCode() {
return this.employeeCode;
}
public void setEmployeeCode(String employeeCode) {
this.employeeCode = employeeCode;
}
public String getEmployeeName() {
return this.employeeName;
}
public void setEmployeeName(String employeeName) {
this.employeeName = employeeName;
}
public String getPassWord() {
return this.passWord;
}
public void setPassWord(String passWord) {
this.passWord = passWord;
}
public String getEmployeeAddr() {
return this.employeeAddr;
}
public void setEmployeeAddr(String employeeAddr) {
this.employeeAddr = employeeAddr;
}
public String getEmployeeTelephone() {
return this.employeeTelephone;
}
public void setEmployeeTelephone(String employeeTelephone) {
this.employeeTelephone = employeeTelephone;
}
public Date getEmployeeBirth() {
return this.employeeBirth;
}
public void setEmployeeBirth(Date employeeBirth) {
this.employeeBirth = employeeBirth;
}
public String getEmployeeSex() {
return this.employeeSex;
}
public void setEmployeeSex(String employeeSex) {
this.employeeSex = employeeSex;
}
public String getInsuranceNo() {
return this.insuranceNo;
}
public void setInsuranceNo(String insuranceNo) {
this.insuranceNo = insuranceNo;
}
public String getEmployeePosition() {
return this.employeePosition;
}
public void setEmployeePosition(String employeePosition) {
this.employeePosition = employeePosition;
}
public Double getSalaryYear() {
return this.salaryYear;
}
public void setSalaryYear(Double salaryYear) {
this.salaryYear = salaryYear;
}
public Set<Examination> getExaminations() {
return this.examinations;
}
public void setExaminations(Set<Examination> examinations) {
this.examinations = examinations;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -