📄 employees.java
字号:
package com.zbaccp.ea.entity;
import java.util.HashSet;
import java.util.Set;
/**
* Employees entity.
*
* @author MyEclipse Persistence Tools
*/
public class Employees implements java.io.Serializable {
// Fields
private String id;
private String loginName;
private String password;
private Set employeedetailses = new HashSet(0);
private Set studentexamineses = new HashSet(0);
private Set messageses = new HashSet(0);
private Set studentattendanceses = new HashSet(0);
private Set employeeroleses = new HashSet(0);
private Set messagetouserses = new HashSet(0);
private Set classeses = new HashSet(0);
private Set schoolteachingses = new HashSet(0);
// Constructors
/** default constructor */
public Employees() {
}
/** minimal constructor */
public Employees(String id, String loginName, String password) {
this.id = id;
this.loginName = loginName;
this.password = password;
}
/** full constructor */
public Employees(String id, String loginName, String password,
Set employeedetailses, Set studentexamineses, Set messageses,
Set studentattendanceses, Set employeeroleses,
Set messagetouserses, Set classeses, Set schoolteachingses) {
this.id = id;
this.loginName = loginName;
this.password = password;
this.employeedetailses = employeedetailses;
this.studentexamineses = studentexamineses;
this.messageses = messageses;
this.studentattendanceses = studentattendanceses;
this.employeeroleses = employeeroleses;
this.messagetouserses = messagetouserses;
this.classeses = classeses;
this.schoolteachingses = schoolteachingses;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getLoginName() {
return this.loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public Set getEmployeedetailses() {
return this.employeedetailses;
}
public void setEmployeedetailses(Set employeedetailses) {
this.employeedetailses = employeedetailses;
}
public Set getStudentexamineses() {
return this.studentexamineses;
}
public void setStudentexamineses(Set studentexamineses) {
this.studentexamineses = studentexamineses;
}
public Set getMessageses() {
return this.messageses;
}
public void setMessageses(Set messageses) {
this.messageses = messageses;
}
public Set getStudentattendanceses() {
return this.studentattendanceses;
}
public void setStudentattendanceses(Set studentattendanceses) {
this.studentattendanceses = studentattendanceses;
}
public Set getEmployeeroleses() {
return this.employeeroleses;
}
public void setEmployeeroleses(Set employeeroleses) {
this.employeeroleses = employeeroleses;
}
public Set getMessagetouserses() {
return this.messagetouserses;
}
public void setMessagetouserses(Set messagetouserses) {
this.messagetouserses = messagetouserses;
}
public Set getClasseses() {
return this.classeses;
}
public void setClasseses(Set classeses) {
this.classeses = classeses;
}
public Set getSchoolteachingses() {
return this.schoolteachingses;
}
public void setSchoolteachingses(Set schoolteachingses) {
this.schoolteachingses = schoolteachingses;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -