|
@@ -193,6 +193,11 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
* 试卷题目数量(校验提交答案的order)
|
|
|
*/
|
|
|
private Integer questionCount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否是全客观题卷 1:是 0:否
|
|
|
+ */
|
|
|
+ private Boolean isAllObjectivePaper;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -483,6 +488,16 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
public void setQuestionCount(Integer questionCount) {
|
|
|
this.questionCount = questionCount;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getIsAllObjectivePaper() {
|
|
|
+ return isAllObjectivePaper;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void setIsAllObjectivePaper(Boolean isAllObjectivePaper) {
|
|
|
+ this.isAllObjectivePaper = isAllObjectivePaper;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
}
|