|
@@ -1,5 +1,7 @@
|
|
|
package cn.com.qmth.examcloud.support.examing;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import cn.com.qmth.examcloud.api.commons.enums.ExamType;
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
import cn.com.qmth.examcloud.support.enums.ExamRecordStatus;
|
|
@@ -7,11 +9,6 @@ import cn.com.qmth.examcloud.support.enums.HandInExamType;
|
|
|
import cn.com.qmth.examcloud.support.enums.IsSuccess;
|
|
|
import cn.com.qmth.examcloud.support.enums.SyncStatus;
|
|
|
|
|
|
-import javax.persistence.Column;
|
|
|
-import javax.persistence.EnumType;
|
|
|
-import javax.persistence.Enumerated;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
public class ExamRecordData implements JsonSerializable {
|
|
|
|
|
|
/**
|
|
@@ -191,6 +188,11 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
* 数据同步状态
|
|
|
*/
|
|
|
private SyncStatus syncStatus;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 试卷题目数量(校验提交答案的order)
|
|
|
+ */
|
|
|
+ private Integer questionCount;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -471,4 +473,16 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
public void setBaiduFaceLivenessSuccessPercent(Double baiduFaceLivenessSuccessPercent) {
|
|
|
this.baiduFaceLivenessSuccessPercent = baiduFaceLivenessSuccessPercent;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getQuestionCount() {
|
|
|
+ return questionCount;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void setQuestionCount(Integer questionCount) {
|
|
|
+ this.questionCount = questionCount;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|