You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
192 lines
4.6 KiB
192 lines
4.6 KiB
package com.zky.pojo;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class ClassInfo implements Serializable {
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
private String classId;
|
|
private String className;
|
|
private String schoolId;
|
|
private String schoolName;
|
|
private int classNumber;
|
|
private String classMaster;
|
|
private String monitor;
|
|
private String ganger;
|
|
private String state;
|
|
private String createDate;
|
|
private String createTeacherId;
|
|
private String createSchoolId;
|
|
private String classEthos;
|
|
private String classTrain;
|
|
private String schoolMate;
|
|
private String teacher;
|
|
private String classAim;
|
|
private String contribute;
|
|
private String updateTime;
|
|
private String updateTeacherId;
|
|
private String updateSchoolId;
|
|
public String getClassId() {
|
|
return classId;
|
|
}
|
|
public void setClassId(String classId) {
|
|
this.classId = classId;
|
|
}
|
|
public String getClassName() {
|
|
return className;
|
|
}
|
|
public void setClassName(String className) {
|
|
this.className = className;
|
|
}
|
|
public String getSchoolId() {
|
|
return schoolId;
|
|
}
|
|
public void setSchoolId(String schoolId) {
|
|
this.schoolId = schoolId;
|
|
}
|
|
public String getSchoolName() {
|
|
return schoolName;
|
|
}
|
|
public void setSchoolName(String schoolName) {
|
|
this.schoolName = schoolName;
|
|
}
|
|
public int getClassNumber() {
|
|
return classNumber;
|
|
}
|
|
public void setClassNumber(int classNumber) {
|
|
this.classNumber = classNumber;
|
|
}
|
|
public String getClassMaster() {
|
|
return classMaster;
|
|
}
|
|
public void setClassMaster(String classMaster) {
|
|
this.classMaster = classMaster;
|
|
}
|
|
public String getMonitor() {
|
|
return monitor;
|
|
}
|
|
public void setMonitor(String monitor) {
|
|
this.monitor = monitor;
|
|
}
|
|
public String getGanger() {
|
|
return ganger;
|
|
}
|
|
public void setGanger(String ganger) {
|
|
this.ganger = ganger;
|
|
}
|
|
public String getState() {
|
|
return state;
|
|
}
|
|
public void setState(String state) {
|
|
this.state = state;
|
|
}
|
|
public String getCreateDate() {
|
|
return createDate;
|
|
}
|
|
public void setCreateDate(String createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
public String getCreateTeacherId() {
|
|
return createTeacherId;
|
|
}
|
|
public void setCreateTeacherId(String createTeacherId) {
|
|
this.createTeacherId = createTeacherId;
|
|
}
|
|
public String getCreateSchoolId() {
|
|
return createSchoolId;
|
|
}
|
|
public void setCreateSchoolId(String createSchoolId) {
|
|
this.createSchoolId = createSchoolId;
|
|
}
|
|
public String getClassEthos() {
|
|
return classEthos;
|
|
}
|
|
public void setClassEthos(String classEthos) {
|
|
this.classEthos = classEthos;
|
|
}
|
|
public String getClassTrain() {
|
|
return classTrain;
|
|
}
|
|
public void setClassTrain(String classTrain) {
|
|
this.classTrain = classTrain;
|
|
}
|
|
public String getSchoolMate() {
|
|
return schoolMate;
|
|
}
|
|
public void setSchoolMate(String schoolMate) {
|
|
this.schoolMate = schoolMate;
|
|
}
|
|
public String getTeacher() {
|
|
return teacher;
|
|
}
|
|
public void setTeacher(String teacher) {
|
|
this.teacher = teacher;
|
|
}
|
|
public String getClassAim() {
|
|
return classAim;
|
|
}
|
|
public void setClassAim(String classAim) {
|
|
this.classAim = classAim;
|
|
}
|
|
public String getContribute() {
|
|
return contribute;
|
|
}
|
|
public void setContribute(String contribute) {
|
|
this.contribute = contribute;
|
|
}
|
|
public String getUpdateTime() {
|
|
return updateTime;
|
|
}
|
|
public void setUpdateTime(String updateTime) {
|
|
this.updateTime = updateTime;
|
|
}
|
|
public String getUpdateTeacherId() {
|
|
return updateTeacherId;
|
|
}
|
|
public void setUpdateTeacherId(String updateTeacherId) {
|
|
this.updateTeacherId = updateTeacherId;
|
|
}
|
|
public String getUpdateSchoolId() {
|
|
return updateSchoolId;
|
|
}
|
|
public void setUpdateSchoolId(String updateSchoolId) {
|
|
this.updateSchoolId = updateSchoolId;
|
|
}
|
|
public ClassInfo(String classId, String className, String schoolId,
|
|
String schoolName, int classNumber, String classMaster, String monitor,
|
|
String ganger, String state, String createDate, String createTeacherId,
|
|
String createSchoolId, String classEthos, String classTrain,
|
|
String schoolMate, String teacher, String classAim, String contribute,
|
|
String updateTime, String updateTeacherId, String updateSchoolId) {
|
|
super();
|
|
this.classId = classId;
|
|
this.className = className;
|
|
this.schoolId = schoolId;
|
|
this.schoolName = schoolName;
|
|
this.classNumber = classNumber;
|
|
this.classMaster = classMaster;
|
|
this.monitor = monitor;
|
|
this.ganger = ganger;
|
|
this.state = state;
|
|
this.createDate = createDate;
|
|
this.createTeacherId = createTeacherId;
|
|
this.createSchoolId = createSchoolId;
|
|
this.classEthos = classEthos;
|
|
this.classTrain = classTrain;
|
|
this.schoolMate = schoolMate;
|
|
this.teacher = teacher;
|
|
this.classAim = classAim;
|
|
this.contribute = contribute;
|
|
this.updateTime = updateTime;
|
|
this.updateTeacherId = updateTeacherId;
|
|
this.updateSchoolId = updateSchoolId;
|
|
}
|
|
public ClassInfo() {
|
|
super();
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
}
|