|
@@ -2,7 +2,6 @@ package cn.com.qmth.examcloud.marking.api.bean;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
* @ClassName StudentPaperBean
|
|
* @ClassName StudentPaperBean
|
|
* @Author nikang
|
|
* @Author nikang
|
|
@@ -10,18 +9,24 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
* @Version 3.0
|
|
* @Version 3.0
|
|
*/
|
|
*/
|
|
public class StudentPaperBean implements JsonSerializable {
|
|
public class StudentPaperBean implements JsonSerializable {
|
|
|
|
+
|
|
private static final long serialVersionUID = 4537371984439448611L;
|
|
private static final long serialVersionUID = 4537371984439448611L;
|
|
|
|
|
|
private Long id;
|
|
private Long id;
|
|
-
|
|
+
|
|
|
|
+
|
|
private Long examRecordMarkingPk;
|
|
private Long examRecordMarkingPk;
|
|
-
|
|
+
|
|
|
|
+
|
|
private Long examStudentId;
|
|
private Long examStudentId;
|
|
-
|
|
+
|
|
|
|
+
|
|
private String studentName;
|
|
private String studentName;
|
|
-
|
|
+
|
|
|
|
+
|
|
private String studentCode;
|
|
private String studentCode;
|
|
-
|
|
+
|
|
|
|
+
|
|
private String courseName;
|
|
private String courseName;
|
|
|
|
|
|
private Long workId;
|
|
private Long workId;
|
|
@@ -30,37 +35,45 @@ public class StudentPaperBean implements JsonSerializable {
|
|
|
|
|
|
private String identityNumber;
|
|
private String identityNumber;
|
|
|
|
|
|
-
|
|
+
|
|
private String basePaperId;
|
|
private String basePaperId;
|
|
|
|
|
|
-
|
|
+
|
|
private String courseCode;
|
|
private String courseCode;
|
|
|
|
|
|
-
|
|
+
|
|
private Long courseId;
|
|
private Long courseId;
|
|
|
|
|
|
-
|
|
+
|
|
private Long examRecordDataId;
|
|
private Long examRecordDataId;
|
|
|
|
|
|
-
|
|
+
|
|
private Double objectiveScore;
|
|
private Double objectiveScore;
|
|
|
|
|
|
-
|
|
+
|
|
private String paperType;
|
|
private String paperType;
|
|
|
|
|
|
-
|
|
+
|
|
private String specialtyName;
|
|
private String specialtyName;
|
|
|
|
|
|
private Double scoreStep;
|
|
private Double scoreStep;
|
|
-
|
|
+
|
|
|
|
+ private Long examId;
|
|
|
|
+
|
|
|
|
+ private String examType;
|
|
|
|
+
|
|
|
|
|
|
* 学生答卷的主观题HTML
|
|
* 学生答卷的主观题HTML
|
|
*/
|
|
*/
|
|
private String studentSubjectiveHtml;
|
|
private String studentSubjectiveHtml;
|
|
|
|
|
|
- public StudentPaperBean(){}
|
|
+ public StudentPaperBean() {
|
|
|
|
+ }
|
|
|
|
|
|
- public StudentPaperBean(Long examRecordMarkingPk, Long examStudentId, String studentName, String studentCode, String courseName, Long workId, String orgCode, String identityNumber, String basePaperId, String courseCode, Long courseId, Long examRecordDataId, Double objectiveScore, String paperType, String specialtyName) {
|
|
+ public StudentPaperBean(Long examRecordMarkingPk, Long examStudentId, String studentName, String studentCode,
|
|
|
|
+ String courseName, Long workId, String orgCode, String identityNumber, String basePaperId,
|
|
|
|
+ String courseCode, Long courseId, Long examRecordDataId, Double objectiveScore, String paperType,
|
|
|
|
+ String specialtyName) {
|
|
this.examRecordMarkingPk = examRecordMarkingPk;
|
|
this.examRecordMarkingPk = examRecordMarkingPk;
|
|
this.examStudentId = examStudentId;
|
|
this.examStudentId = examStudentId;
|
|
this.studentName = studentName;
|
|
this.studentName = studentName;
|
|
@@ -146,7 +159,7 @@ public class StudentPaperBean implements JsonSerializable {
|
|
return basePaperId;
|
|
return basePaperId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setBasePaperId( String basePaperId) {
|
|
+ public void setBasePaperId(String basePaperId) {
|
|
this.basePaperId = basePaperId;
|
|
this.basePaperId = basePaperId;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -214,8 +227,10 @@ public class StudentPaperBean implements JsonSerializable {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
|
|
|
|
- public StudentPaperBean(Long workId, Long examRecordMarkingPk, String basePaperId, Long examStudentId, Long courseId,
|
|
+ public StudentPaperBean(Long workId, Long examRecordMarkingPk, String basePaperId, Long examStudentId,
|
|
- String orgCode, Long examRecordId, Double objectiveScore, String paperType, String courseCode, String identityNumber, String studentName, String studentCode, String courseName, String specialtyName) {
|
|
+ Long courseId, String orgCode, Long examRecordId, Double objectiveScore, String paperType,
|
|
|
|
+ String courseCode, String identityNumber, String studentName, String studentCode, String courseName,
|
|
|
|
+ String specialtyName) {
|
|
this.examRecordMarkingPk = examRecordMarkingPk;
|
|
this.examRecordMarkingPk = examRecordMarkingPk;
|
|
this.basePaperId = basePaperId;
|
|
this.basePaperId = basePaperId;
|
|
this.examStudentId = examStudentId;
|
|
this.examStudentId = examStudentId;
|
|
@@ -233,13 +248,28 @@ public class StudentPaperBean implements JsonSerializable {
|
|
this.specialtyName = specialtyName;
|
|
this.specialtyName = specialtyName;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getScoreStep() {
|
|
+ public Double getScoreStep() {
|
|
- return scoreStep;
|
|
+ return scoreStep;
|
|
- }
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setScoreStep(Double scoreStep) {
|
|
|
|
+ this.scoreStep = scoreStep;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getExamId() {
|
|
|
|
+ return examId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamId(Long examId) {
|
|
|
|
+ this.examId = examId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getExamType() {
|
|
|
|
+ return examType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamType(String examType) {
|
|
|
|
+ this.examType = examType;
|
|
|
|
+ }
|
|
|
|
|
|
- public void setScoreStep(Double scoreStep) {
|
|
|
|
- this.scoreStep = scoreStep;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-
|
|
|
|
}
|
|
}
|