📄 abstractclasses.java
字号:
package org.hibernate.beans;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractClasses entity provides the base persistence definition of the
* Classes entity. @author MyEclipse Persistence Tools
*/
public abstract class AbstractClasses implements java.io.Serializable {
// Fields
private String classId;
private Department departmentByLimitDepartment;
private Department departmentByDepartmentId;
private Teacher teacher;
private Integer id;
private String className;
private String classTime;
private String classPlace;
private String creditHour;
private String selectNum;
private String num;
private String term;
private String academicYear;
private String remark;
private Set chooseclasses = new HashSet(0);
// Constructors
/** default constructor */
public AbstractClasses() {
}
/** minimal constructor */
public AbstractClasses(String classId, Department departmentByDepartmentId,
Teacher teacher, Integer id, String className, String classTime,
String creditHour, String num, String term, String academicYear) {
this.classId = classId;
this.departmentByDepartmentId = departmentByDepartmentId;
this.teacher = teacher;
this.id = id;
this.className = className;
this.classTime = classTime;
this.creditHour = creditHour;
this.num = num;
this.term = term;
this.academicYear = academicYear;
}
/** full constructor */
public AbstractClasses(String classId,
Department departmentByLimitDepartment,
Department departmentByDepartmentId, Teacher teacher, Integer id,
String className, String classTime, String classPlace,
String creditHour, String selectNum, String num, String term,
String academicYear, String remark, Set chooseclasses) {
this.classId = classId;
this.departmentByLimitDepartment = departmentByLimitDepartment;
this.departmentByDepartmentId = departmentByDepartmentId;
this.teacher = teacher;
this.id = id;
this.className = className;
this.classTime = classTime;
this.classPlace = classPlace;
this.creditHour = creditHour;
this.selectNum = selectNum;
this.num = num;
this.term = term;
this.academicYear = academicYear;
this.remark = remark;
this.chooseclasses = chooseclasses;
}
// Property accessors
public String getClassId() {
return this.classId;
}
public void setClassId(String classId) {
this.classId = classId;
}
public Department getDepartmentByLimitDepartment() {
return this.departmentByLimitDepartment;
}
public void setDepartmentByLimitDepartment(
Department departmentByLimitDepartment) {
this.departmentByLimitDepartment = departmentByLimitDepartment;
}
public Department getDepartmentByDepartmentId() {
return this.departmentByDepartmentId;
}
public void setDepartmentByDepartmentId(Department departmentByDepartmentId) {
this.departmentByDepartmentId = departmentByDepartmentId;
}
public Teacher getTeacher() {
return this.teacher;
}
public void setTeacher(Teacher teacher) {
this.teacher = teacher;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getClassName() {
return this.className;
}
public void setClassName(String className) {
this.className = className;
}
public String getClassTime() {
return this.classTime;
}
public void setClassTime(String classTime) {
this.classTime = classTime;
}
public String getClassPlace() {
return this.classPlace;
}
public void setClassPlace(String classPlace) {
this.classPlace = classPlace;
}
public String getCreditHour() {
return this.creditHour;
}
public void setCreditHour(String creditHour) {
this.creditHour = creditHour;
}
public String getSelectNum() {
return this.selectNum;
}
public void setSelectNum(String selectNum) {
this.selectNum = selectNum;
}
public String getNum() {
return this.num;
}
public void setNum(String num) {
this.num = num;
}
public String getTerm() {
return this.term;
}
public void setTerm(String term) {
this.term = term;
}
public String getAcademicYear() {
return this.academicYear;
}
public void setAcademicYear(String academicYear) {
this.academicYear = academicYear;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Set getChooseclasses() {
return this.chooseclasses;
}
public void setChooseclasses(Set chooseclasses) {
this.chooseclasses = chooseclasses;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -