|
@@ -1,72 +1,84 @@
|
|
|
-package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
|
-
|
|
|
-import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
-
|
|
|
-public class QuerySubjectiveAnswerBean implements JsonSerializable{
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- */
|
|
|
- private static final long serialVersionUID = 7905287270240057925L;
|
|
|
- /**
|
|
|
- * 考试记录Data Id
|
|
|
- */
|
|
|
- private Long examRecordDataId;
|
|
|
- /**
|
|
|
- * 大题号
|
|
|
- */
|
|
|
- private Integer mainNumber;
|
|
|
- /**
|
|
|
- * 原题ID
|
|
|
- */
|
|
|
- private String questionId;
|
|
|
- /**
|
|
|
- * 在整个试卷中的序号
|
|
|
- */
|
|
|
- private Integer order;
|
|
|
- /**
|
|
|
- * 考生作答
|
|
|
- */
|
|
|
- private String studentAnswer;
|
|
|
-
|
|
|
- public Long getExamRecordDataId() {
|
|
|
- return examRecordDataId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
- this.examRecordDataId = examRecordDataId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getMainNumber() {
|
|
|
- return mainNumber;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMainNumber(Integer mainNumber) {
|
|
|
- this.mainNumber = mainNumber;
|
|
|
- }
|
|
|
-
|
|
|
- public String getQuestionId() {
|
|
|
- return questionId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setQuestionId(String questionId) {
|
|
|
- this.questionId = questionId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getOrder() {
|
|
|
- return order;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrder(Integer order) {
|
|
|
- this.order = order;
|
|
|
- }
|
|
|
-
|
|
|
- public String getStudentAnswer() {
|
|
|
- return studentAnswer;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStudentAnswer(String studentAnswer) {
|
|
|
- this.studentAnswer = studentAnswer;
|
|
|
- }
|
|
|
-
|
|
|
-}
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
+import cn.com.qmth.examcloud.question.commons.core.question.AnswerType;
|
|
|
+
|
|
|
+public class QuerySubjectiveAnswerBean implements JsonSerializable{
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = 7905287270240057925L;
|
|
|
+ /**
|
|
|
+ * 考试记录Data Id
|
|
|
+ */
|
|
|
+ private Long examRecordDataId;
|
|
|
+ /**
|
|
|
+ * 大题号
|
|
|
+ */
|
|
|
+ private Integer mainNumber;
|
|
|
+ /**
|
|
|
+ * 原题ID
|
|
|
+ */
|
|
|
+ private String questionId;
|
|
|
+ /**
|
|
|
+ * 在整个试卷中的序号
|
|
|
+ */
|
|
|
+ private Integer order;
|
|
|
+ /**
|
|
|
+ * 考生作答
|
|
|
+ */
|
|
|
+ private String studentAnswer;
|
|
|
+ /**
|
|
|
+ * 题目作答类型
|
|
|
+ */
|
|
|
+ private AnswerType answerType;
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
+ return examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMainNumber() {
|
|
|
+ return mainNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMainNumber(Integer mainNumber) {
|
|
|
+ this.mainNumber = mainNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getQuestionId() {
|
|
|
+ return questionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQuestionId(String questionId) {
|
|
|
+ this.questionId = questionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOrder() {
|
|
|
+ return order;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrder(Integer order) {
|
|
|
+ this.order = order;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStudentAnswer() {
|
|
|
+ return studentAnswer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentAnswer(String studentAnswer) {
|
|
|
+ this.studentAnswer = studentAnswer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public AnswerType getAnswerType() {
|
|
|
+ return answerType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAnswerType(AnswerType answerType) {
|
|
|
+ this.answerType = answerType;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|