|
@@ -2,6 +2,7 @@ package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
import cn.com.qmth.examcloud.question.commons.core.question.AnswerType;
|
|
import cn.com.qmth.examcloud.question.commons.core.question.AnswerType;
|
|
|
|
+import cn.com.qmth.examcloud.question.commons.core.question.QuestionType;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @Description 待阅卷的主观题答案实体bean
|
|
* @Description 待阅卷的主观题答案实体bean
|
|
@@ -36,11 +37,6 @@ public class PagedToBeMarkSubjectiveAnswerBean implements JsonSerializable{
|
|
*/
|
|
*/
|
|
private AnswerType answerType;
|
|
private AnswerType answerType;
|
|
|
|
|
|
- /**
|
|
|
|
- * 真实的题目作答类型(历史原因,图片作答类型未按规范指定)
|
|
|
|
- */
|
|
|
|
- private String realAnswerType;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* 标准答案
|
|
* 标准答案
|
|
*/
|
|
*/
|
|
@@ -56,6 +52,11 @@ public class PagedToBeMarkSubjectiveAnswerBean implements JsonSerializable{
|
|
*/
|
|
*/
|
|
private String parentBody;
|
|
private String parentBody;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 题型
|
|
|
|
+ */
|
|
|
|
+ private QuestionType questionType;
|
|
|
|
+
|
|
public Integer getMainNumber() {
|
|
public Integer getMainNumber() {
|
|
return mainNumber;
|
|
return mainNumber;
|
|
}
|
|
}
|
|
@@ -96,14 +97,6 @@ public class PagedToBeMarkSubjectiveAnswerBean implements JsonSerializable{
|
|
this.answerType = answerType;
|
|
this.answerType = answerType;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getRealAnswerType() {
|
|
|
|
- return realAnswerType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setRealAnswerType(String realAnswerType) {
|
|
|
|
- this.realAnswerType = realAnswerType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public String getAnswer() {
|
|
public String getAnswer() {
|
|
return answer;
|
|
return answer;
|
|
}
|
|
}
|
|
@@ -119,4 +112,20 @@ public class PagedToBeMarkSubjectiveAnswerBean implements JsonSerializable{
|
|
public void setBody(String body) {
|
|
public void setBody(String body) {
|
|
this.body = body;
|
|
this.body = body;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getParentBody() {
|
|
|
|
+ return parentBody;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setParentBody(String parentBody) {
|
|
|
|
+ this.parentBody = parentBody;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public QuestionType getQuestionType() {
|
|
|
|
+ return questionType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setQuestionType(QuestionType questionType) {
|
|
|
|
+ this.questionType = questionType;
|
|
|
|
+ }
|
|
}
|
|
}
|