|
@@ -2,7 +2,6 @@ package cn.com.qmth.examcloud.marking.api.bean;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* @ClassName StudentPaperBean
|
|
|
* @Author nikang
|
|
@@ -10,18 +9,24 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
* @Version 3.0
|
|
|
*/
|
|
|
public class StudentPaperBean implements JsonSerializable {
|
|
|
+
|
|
|
private static final long serialVersionUID = 4537371984439448611L;
|
|
|
|
|
|
private Long id;
|
|
|
- //阅卷ec_oe_exam_record_4_marking主键
|
|
|
+
|
|
|
+ // 阅卷ec_oe_exam_record_4_marking主键
|
|
|
private Long examRecordMarkingPk;
|
|
|
- //考生ID
|
|
|
+
|
|
|
+ // 考生ID
|
|
|
private Long examStudentId;
|
|
|
- //学生姓名
|
|
|
+
|
|
|
+ // 学生姓名
|
|
|
private String studentName;
|
|
|
- //学号
|
|
|
+
|
|
|
+ // 学号
|
|
|
private String studentCode;
|
|
|
- //课程名称
|
|
|
+
|
|
|
+ // 课程名称
|
|
|
private String courseName;
|
|
|
|
|
|
private Long workId;
|
|
@@ -30,37 +35,45 @@ public class StudentPaperBean implements JsonSerializable {
|
|
|
|
|
|
private String identityNumber;
|
|
|
|
|
|
- //基础试卷ID
|
|
|
+ // 基础试卷ID
|
|
|
private String basePaperId;
|
|
|
|
|
|
- //课程Code
|
|
|
+ // 课程Code
|
|
|
private String courseCode;
|
|
|
|
|
|
- //课程Id
|
|
|
+ // 课程Id
|
|
|
private Long courseId;
|
|
|
|
|
|
- //考试记录Id
|
|
|
+ // 考试记录Id
|
|
|
private Long examRecordDataId;
|
|
|
|
|
|
- //客观分
|
|
|
+ // 客观分
|
|
|
private Double objectiveScore;
|
|
|
|
|
|
- //试卷类型
|
|
|
+ // 试卷类型
|
|
|
private String paperType;
|
|
|
|
|
|
- //学生专业
|
|
|
+ // 学生专业
|
|
|
private String specialtyName;
|
|
|
|
|
|
private Double scoreStep;
|
|
|
-
|
|
|
+
|
|
|
+ private Long examId;
|
|
|
+
|
|
|
+ private String examType;
|
|
|
+
|
|
|
/**
|
|
|
* 学生答卷的主观题HTML
|
|
|
*/
|
|
|
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.examStudentId = examStudentId;
|
|
|
this.studentName = studentName;
|
|
@@ -146,7 +159,7 @@ public class StudentPaperBean implements JsonSerializable {
|
|
|
return basePaperId;
|
|
|
}
|
|
|
|
|
|
- public void setBasePaperId( String basePaperId) {
|
|
|
+ public void setBasePaperId(String basePaperId) {
|
|
|
this.basePaperId = basePaperId;
|
|
|
}
|
|
|
|
|
@@ -214,8 +227,10 @@ public class StudentPaperBean implements JsonSerializable {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public StudentPaperBean(Long workId, Long examRecordMarkingPk, String basePaperId, Long examStudentId, Long courseId,
|
|
|
- String orgCode, Long examRecordId, Double objectiveScore, String paperType, String courseCode, String identityNumber, String studentName, String studentCode, String courseName, String specialtyName) {
|
|
|
+ public StudentPaperBean(Long workId, Long examRecordMarkingPk, String basePaperId, Long examStudentId,
|
|
|
+ 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.basePaperId = basePaperId;
|
|
|
this.examStudentId = examStudentId;
|
|
@@ -233,13 +248,28 @@ public class StudentPaperBean implements JsonSerializable {
|
|
|
this.specialtyName = specialtyName;
|
|
|
}
|
|
|
|
|
|
- public Double getScoreStep() {
|
|
|
- return scoreStep;
|
|
|
- }
|
|
|
+ public Double getScoreStep() {
|
|
|
+ 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;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
}
|