|
@@ -4,10 +4,6 @@ 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;
|
|
import cn.com.qmth.examcloud.question.commons.core.question.QuestionType;
|
|
|
|
|
|
-import javax.persistence.EnumType;
|
|
|
|
-import javax.persistence.Enumerated;
|
|
|
|
-import java.util.Date;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* @Description 题目详情
|
|
* @Description 题目详情
|
|
* @Author lideyin
|
|
* @Author lideyin
|
|
@@ -32,42 +28,52 @@ public class StuExamQuestionBean implements JsonSerializable {
|
|
* 考试记录Data Id
|
|
* 考试记录Data Id
|
|
*/
|
|
*/
|
|
private Long examRecordDataId;
|
|
private Long examRecordDataId;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 大题号
|
|
* 大题号
|
|
*/
|
|
*/
|
|
private Integer mainNumber;
|
|
private Integer mainNumber;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 原题ID
|
|
* 原题ID
|
|
*/
|
|
*/
|
|
private String questionId;
|
|
private String questionId;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 顺序
|
|
* 顺序
|
|
*/
|
|
*/
|
|
private Integer order;
|
|
private Integer order;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 小题分数
|
|
* 小题分数
|
|
*/
|
|
*/
|
|
private Double questionScore;
|
|
private Double questionScore;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 小题类型
|
|
* 小题类型
|
|
*/
|
|
*/
|
|
private QuestionType questionType;
|
|
private QuestionType questionType;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 标准答案
|
|
* 标准答案
|
|
*/
|
|
*/
|
|
private String correctAnswer;
|
|
private String correctAnswer;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 考生作答
|
|
* 考生作答
|
|
*/
|
|
*/
|
|
private String studentAnswer;
|
|
private String studentAnswer;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 学生小题得分
|
|
* 学生小题得分
|
|
*/
|
|
*/
|
|
private Double studentScore;
|
|
private Double studentScore;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 是否作答
|
|
* 是否作答
|
|
*/
|
|
*/
|
|
private Boolean isAnswer;
|
|
private Boolean isAnswer;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 是否标记
|
|
* 是否标记
|
|
*/
|
|
*/
|
|
@@ -82,10 +88,10 @@ public class StuExamQuestionBean implements JsonSerializable {
|
|
* 音频播放次数
|
|
* 音频播放次数
|
|
*/
|
|
*/
|
|
private String audioPlayTimes;
|
|
private String audioPlayTimes;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 题目作答类型
|
|
* 题目作答类型
|
|
*/
|
|
*/
|
|
- @Enumerated(EnumType.STRING)
|
|
|
|
private AnswerType answerType;
|
|
private AnswerType answerType;
|
|
|
|
|
|
public Boolean getInMongo() {
|
|
public Boolean getInMongo() {
|
|
@@ -215,4 +221,5 @@ public class StuExamQuestionBean implements JsonSerializable {
|
|
public void setAnswerType(AnswerType answerType) {
|
|
public void setAnswerType(AnswerType answerType) {
|
|
this.answerType = answerType;
|
|
this.answerType = answerType;
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|