|
@@ -0,0 +1,72 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.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;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|