|
@@ -12,6 +12,7 @@ import javax.persistence.Id;
|
|
import javax.persistence.Index;
|
|
import javax.persistence.Index;
|
|
import javax.persistence.Table;
|
|
import javax.persistence.Table;
|
|
|
|
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.dao.enums.ExamRecordStatus;
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
|
import cn.com.qmth.examcloud.core.oe.student.dao.enums.ExamType;
|
|
import cn.com.qmth.examcloud.core.oe.student.dao.enums.ExamType;
|
|
@@ -125,6 +126,9 @@ public class ExamRecordDataEntity extends JpaEntity {
|
|
*/
|
|
*/
|
|
private Integer faceTotalCount;
|
|
private Integer faceTotalCount;
|
|
|
|
|
|
|
|
+ //考试记录状态
|
|
|
|
+ private ExamRecordStatus examRecordStatus;
|
|
|
|
+
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -284,4 +288,12 @@ public class ExamRecordDataEntity extends JpaEntity {
|
|
public void setIsExceed(Boolean isExceed) {
|
|
public void setIsExceed(Boolean isExceed) {
|
|
this.isExceed = isExceed;
|
|
this.isExceed = isExceed;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public ExamRecordStatus getExamRecordStatus() {
|
|
|
|
+ return examRecordStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamRecordStatus(ExamRecordStatus examRecordStatus) {
|
|
|
|
+ this.examRecordStatus = examRecordStatus;
|
|
|
|
+ }
|
|
}
|
|
}
|