|
@@ -218,6 +218,16 @@ public class ExamRecordDataEntity extends JpaEntity {
|
|
|
*/
|
|
|
private Long batchNum;
|
|
|
|
|
|
+ /**
|
|
|
+ * 试卷题目数量(校验提交答案的order)
|
|
|
+ */
|
|
|
+ private Integer questionCount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否是全客观题卷 1:是 0:否
|
|
|
+ */
|
|
|
+ private Boolean isAllObjectivePaper;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -508,4 +518,26 @@ public class ExamRecordDataEntity extends JpaEntity {
|
|
|
public void setBaiduFaceLivenessSuccessPercent(Double baiduFaceLivenessSuccessPercent) {
|
|
|
this.baiduFaceLivenessSuccessPercent = baiduFaceLivenessSuccessPercent;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getQuestionCount() {
|
|
|
+ return questionCount;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void setQuestionCount(Integer questionCount) {
|
|
|
+ this.questionCount = questionCount;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getIsAllObjectivePaper() {
|
|
|
+ return isAllObjectivePaper;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void setIsAllObjectivePaper(Boolean isAllObjectivePaper) {
|
|
|
+ this.isAllObjectivePaper = isAllObjectivePaper;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|