📄 abstractarrangement.java
字号:
package vo;
/**
* AbstractArrangement generated by MyEclipse Persistence Tools
*/
public abstract class AbstractArrangement implements java.io.Serializable {
// Fields
private Integer id;
private String courseName;
private String expName;
private String coursePro;
private String period;
private String classes;
private String population;
private String weekDay;
private String periodSeq;
private String techer;
private String expEnvironment;
private String ps;
private String week;
private String term;
private String year;
private String applier;
private String isApplied;
private String date;
private Long weight;
// Constructors
/** default constructor */
public AbstractArrangement() {
}
/** full constructor */
public AbstractArrangement(String courseName, String expName,
String coursePro, String period, String classes, String population,
String weekDay, String periodSeq, String techer,
String expEnvironment, String ps, String week, String term,
String year, String applier, String isApplied, String date,
Long weight) {
this.courseName = courseName;
this.expName = expName;
this.coursePro = coursePro;
this.period = period;
this.classes = classes;
this.population = population;
this.weekDay = weekDay;
this.periodSeq = periodSeq;
this.techer = techer;
this.expEnvironment = expEnvironment;
this.ps = ps;
this.week = week;
this.term = term;
this.year = year;
this.applier = applier;
this.isApplied = isApplied;
this.date = date;
this.weight = weight;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getCourseName() {
return this.courseName;
}
public void setCourseName(String courseName) {
this.courseName = courseName;
}
public String getExpName() {
return this.expName;
}
public void setExpName(String expName) {
this.expName = expName;
}
public String getCoursePro() {
return this.coursePro;
}
public void setCoursePro(String coursePro) {
this.coursePro = coursePro;
}
public String getPeriod() {
return this.period;
}
public void setPeriod(String period) {
this.period = period;
}
public String getClasses() {
return this.classes;
}
public void setClasses(String classes) {
this.classes = classes;
}
public String getPopulation() {
return this.population;
}
public void setPopulation(String population) {
this.population = population;
}
public String getWeekDay() {
return this.weekDay;
}
public void setWeekDay(String weekDay) {
this.weekDay = weekDay;
}
public String getPeriodSeq() {
return this.periodSeq;
}
public void setPeriodSeq(String periodSeq) {
this.periodSeq = periodSeq;
}
public String getTecher() {
return this.techer;
}
public void setTecher(String techer) {
this.techer = techer;
}
public String getExpEnvironment() {
return this.expEnvironment;
}
public void setExpEnvironment(String expEnvironment) {
this.expEnvironment = expEnvironment;
}
public String getPs() {
return this.ps;
}
public void setPs(String ps) {
this.ps = ps;
}
public String getWeek() {
return this.week;
}
public void setWeek(String week) {
this.week = week;
}
public String getTerm() {
return this.term;
}
public void setTerm(String term) {
this.term = term;
}
public String getYear() {
return this.year;
}
public void setYear(String year) {
this.year = year;
}
public String getApplier() {
return this.applier;
}
public void setApplier(String applier) {
this.applier = applier;
}
public String getIsApplied() {
return this.isApplied;
}
public void setIsApplied(String isApplied) {
this.isApplied = isApplied;
}
public String getDate() {
return this.date;
}
public void setDate(String date) {
this.date = date;
}
public Long getWeight() {
return this.weight;
}
public void setWeight(Long weight) {
this.weight = weight;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -