|
@@ -5,6 +5,7 @@ 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;
|
|
|
+import cn.com.qmth.examcloud.support.enums.HandInExamType;
|
|
|
|
|
|
public class ExamRecordData implements JsonSerializable {
|
|
|
|
|
@@ -116,6 +117,11 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
// 考试记录状态
|
|
|
private ExamRecordStatus examRecordStatus;
|
|
|
|
|
|
+ /**
|
|
|
+ * 交卷类型
|
|
|
+ */
|
|
|
+ private HandInExamType handInExamType;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -283,4 +289,12 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
public void setExamRecordStatus(ExamRecordStatus examRecordStatus) {
|
|
|
this.examRecordStatus = examRecordStatus;
|
|
|
}
|
|
|
+
|
|
|
+ public HandInExamType getHandInExamType() {
|
|
|
+ return handInExamType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHandInExamType(HandInExamType handInExamType) {
|
|
|
+ this.handInExamType = handInExamType;
|
|
|
+ }
|
|
|
}
|