|
@@ -223,21 +223,21 @@ public class ExamStudent implements Serializable {
|
|
|
@ExcelField(title = "专业类型", align = 2, sort = 120)
|
|
|
@Column(name = "subject_category")
|
|
|
private String subjectCategory;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 学院
|
|
|
*/
|
|
|
@ExcelField(title = "学院", align = 2, sort = 130)
|
|
|
@Column(name = "college")
|
|
|
private String college;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 班级
|
|
|
*/
|
|
|
@ExcelField(title = "班级", align = 2, sort = 140)
|
|
|
@Column(name = "class_name")
|
|
|
private String className;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 任课老师
|
|
|
*/
|
|
@@ -282,6 +282,12 @@ public class ExamStudent implements Serializable {
|
|
|
@Transient
|
|
|
private String tagValue;
|
|
|
|
|
|
+ @Transient
|
|
|
+ private List<ExamQuestion> subjectiveQuestionList;
|
|
|
+
|
|
|
+ @Transient
|
|
|
+ private List<ExamQuestion> objectiveQuestionList;
|
|
|
+
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -706,28 +712,44 @@ public class ExamStudent implements Serializable {
|
|
|
this.paperType = paperType;
|
|
|
}
|
|
|
|
|
|
- public String getCollege() {
|
|
|
- return college;
|
|
|
- }
|
|
|
+ public String getCollege() {
|
|
|
+ return college;
|
|
|
+ }
|
|
|
|
|
|
- public void setCollege(String college) {
|
|
|
- this.college = college;
|
|
|
- }
|
|
|
+ public void setCollege(String college) {
|
|
|
+ this.college = college;
|
|
|
+ }
|
|
|
|
|
|
- public String getClassName() {
|
|
|
- return className;
|
|
|
- }
|
|
|
+ public String getClassName() {
|
|
|
+ return className;
|
|
|
+ }
|
|
|
|
|
|
- public void setClassName(String className) {
|
|
|
- this.className = className;
|
|
|
- }
|
|
|
+ public void setClassName(String className) {
|
|
|
+ this.className = className;
|
|
|
+ }
|
|
|
|
|
|
- public String getTeacher() {
|
|
|
- return teacher;
|
|
|
- }
|
|
|
+ public String getTeacher() {
|
|
|
+ return teacher;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeacher(String teacher) {
|
|
|
+ this.teacher = teacher;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<ExamQuestion> getSubjectiveQuestionList() {
|
|
|
+ return subjectiveQuestionList;
|
|
|
+ }
|
|
|
|
|
|
- public void setTeacher(String teacher) {
|
|
|
- this.teacher = teacher;
|
|
|
- }
|
|
|
+ public void setSubjectiveQuestionList(List<ExamQuestion> subjectiveQuestionList) {
|
|
|
+ this.subjectiveQuestionList = subjectiveQuestionList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<ExamQuestion> getObjectiveQuestionList() {
|
|
|
+ return objectiveQuestionList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setObjectiveQuestionList(List<ExamQuestion> objectiveQuestionList) {
|
|
|
+ this.objectiveQuestionList = objectiveQuestionList;
|
|
|
+ }
|
|
|
|
|
|
}
|