|
@@ -40,6 +40,25 @@ public class ExamStudent implements Serializable {
|
|
|
private String specialtyLevel;
|
|
|
|
|
|
private String specialtyName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 专业类型
|
|
|
+ */
|
|
|
+ private String specialtyType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否重修
|
|
|
+ */
|
|
|
+ private boolean repair;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 年级
|
|
|
+ */
|
|
|
+ private String grade;
|
|
|
+ /**
|
|
|
+ * 是否毕业
|
|
|
+ */
|
|
|
+ private boolean isGraduate;
|
|
|
|
|
|
private String learnCenter;
|
|
|
|
|
@@ -52,7 +71,7 @@ public class ExamStudent implements Serializable {
|
|
|
/**
|
|
|
* 是否缺考
|
|
|
*/
|
|
|
- private Boolean finished;
|
|
|
+ private boolean finished;
|
|
|
|
|
|
public static long getSerialVersionUID() {
|
|
|
return serialVersionUID;
|
|
@@ -178,14 +197,50 @@ public class ExamStudent implements Serializable {
|
|
|
this.remark = remark;
|
|
|
}
|
|
|
|
|
|
- public Boolean getFinished() {
|
|
|
+ public boolean getFinished() {
|
|
|
return finished;
|
|
|
}
|
|
|
|
|
|
- public void setFinished(Boolean finished) {
|
|
|
+ public void setFinished(boolean finished) {
|
|
|
this.finished = finished;
|
|
|
}
|
|
|
|
|
|
+ public String getSpecialtyType() {
|
|
|
+ return specialtyType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpecialtyType(String specialtyType) {
|
|
|
+ this.specialtyType = specialtyType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isRepair() {
|
|
|
+ return repair;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRepair(boolean repair) {
|
|
|
+ this.repair = repair;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGrade() {
|
|
|
+ return grade;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGrade(String grade) {
|
|
|
+ this.grade = grade;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isGraduate() {
|
|
|
+ return isGraduate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGraduate(boolean isGraduate) {
|
|
|
+ this.isGraduate = isGraduate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static long getSerialversionuid() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
+
|
|
|
public ExamStudent() {
|
|
|
}
|
|
|
}
|