Kaynağa Gözat

增加字段

xiatian 5 yıl önce
ebeveyn
işleme
92baf011a0

+ 15 - 0
src/main/java/cn/com/qmth/examcloud/support/examing/ExamRecordData.java

@@ -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;
+    }
     
     
 }