📄 employeedetails.java
字号:
package com.zbaccp.ea.entity;
import java.util.Date;
/**
* Employeedetails entity.
*
* @author MyEclipse Persistence Tools
*/
public class Employeedetails implements java.io.Serializable {
// Fields
private String id;
private Employees employees;
private String name;
private String sex;
private Date birthday;
private String email;
private String qualification;
private String telephone;
private String address;
// Constructors
/** default constructor */
public Employeedetails() {
}
/** minimal constructor */
public Employeedetails(String id, Employees employees, String name,
String sex, Date birthday, String qualification, String telephone,
String address) {
this.id = id;
this.employees = employees;
this.name = name;
this.sex = sex;
this.birthday = birthday;
this.qualification = qualification;
this.telephone = telephone;
this.address = address;
}
/** full constructor */
public Employeedetails(String id, Employees employees, String name,
String sex, Date birthday, String email, String qualification,
String telephone, String address) {
this.id = id;
this.employees = employees;
this.name = name;
this.sex = sex;
this.birthday = birthday;
this.email = email;
this.qualification = qualification;
this.telephone = telephone;
this.address = address;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Employees getEmployees() {
return this.employees;
}
public void setEmployees(Employees employees) {
this.employees = employees;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public Date getBirthday() {
return this.birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getQualification() {
return this.qualification;
}
public void setQualification(String qualification) {
this.qualification = qualification;
}
public String getTelephone() {
return this.telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -