|
@@ -1,18 +1,45 @@
|
|
package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
|
|
|
|
-public class ExamRecordForMarkingBean {
|
|
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
|
|
|
|
+
|
|
|
|
+public class ExamRecordForMarkingBean implements JsonSerializable{
|
|
|
|
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 考试ID
|
|
|
|
+ */
|
|
|
|
+ private Long examId;
|
|
|
|
+ /**
|
|
|
|
+ * 考试记录ID
|
|
|
|
+ */
|
|
|
|
+ private Long examRecordDataId;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 原始试卷ID
|
|
|
|
+ */
|
|
private String basePaperId;
|
|
private String basePaperId;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 原始试卷名称
|
|
|
|
+ */
|
|
private String basePaperName;
|
|
private String basePaperName;
|
|
-
|
|
|
|
- private String paperType;
|
|
|
|
-
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 课程code
|
|
|
|
+ */
|
|
private String courseCode;
|
|
private String courseCode;
|
|
-
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 课程名称
|
|
|
|
+ */
|
|
private String courseName;
|
|
private String courseName;
|
|
|
|
+ /**
|
|
|
|
+ * 试卷类型 A、B、O
|
|
|
|
+ */
|
|
|
|
+ private String paperType;
|
|
|
|
+ /**
|
|
|
|
+ * 考生ID
|
|
|
|
+ */
|
|
|
|
+ private Long examStudentId;
|
|
|
|
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
@@ -61,5 +88,29 @@ public class ExamRecordForMarkingBean {
|
|
public void setCourseName(String courseName) {
|
|
public void setCourseName(String courseName) {
|
|
this.courseName = courseName;
|
|
this.courseName = courseName;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Long getExamId() {
|
|
|
|
+ return examId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamId(Long examId) {
|
|
|
|
+ this.examId = examId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
|
+ return examRecordDataId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getExamStudentId() {
|
|
|
|
+ return examStudentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamStudentId(Long examStudentId) {
|
|
|
|
+ this.examStudentId = examStudentId;
|
|
|
|
+ }
|
|
|
|
|
|
}
|
|
}
|