|
@@ -3,13 +3,36 @@ package com.qmth.themis.business.cache.bean;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
-import com.qmth.themis.business.base.BaseEntity;
|
|
|
-import com.qmth.themis.business.enums.*;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
+import com.qmth.themis.business.enums.EntryAuthenticationPolicyEnum;
|
|
|
+import com.qmth.themis.business.enums.ExamModeEnum;
|
|
|
+import com.qmth.themis.business.enums.InProcessLivenessJudgePolicyEnum;
|
|
|
+import com.qmth.themis.business.enums.InvigilateVerifyEnum;
|
|
|
+import com.qmth.themis.business.enums.ObjectiveScorePolicyEnum;
|
|
|
+import com.qmth.themis.business.enums.RecordSelectStrategyEnum;
|
|
|
+import com.qmth.themis.business.enums.ScoreStatusEnum;
|
|
|
|
|
|
-public class ExamCacheBean extends BaseEntity {
|
|
|
+public class ExamCacheBean implements Serializable {
|
|
|
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = -1544653057729256077L;
|
|
|
+
|
|
|
+ //主键
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ //创建人id
|
|
|
+ private Long createId;
|
|
|
+
|
|
|
+ //创建时间
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ //修改人id
|
|
|
+ private Long updateId;
|
|
|
+
|
|
|
+ //修改时间
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
//机构ID
|
|
|
private Long orgId;
|
|
|
|
|
@@ -121,20 +144,16 @@ public class ExamCacheBean extends BaseEntity {
|
|
|
//是否开始监控转录,0:开启,1:不开启
|
|
|
private Integer monitorRecord;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否允许使用移动端拍照答题,0:不开启,1:开启")
|
|
|
- @TableField(value = "mobile_photo_upload")
|
|
|
+ //是否允许使用移动端拍照答题,0:不开启,1:开启
|
|
|
private Integer mobilePhotoUpload;
|
|
|
|
|
|
- @ApiModelProperty(value = "考试过程中活体检测间隔时间")
|
|
|
- @TableField(value = "in_process_liveness_fixed_range")
|
|
|
+ //考试过程中活体检测间隔时间
|
|
|
private String inProcessLivenessFixedRange;
|
|
|
|
|
|
- @ApiModelProperty(value = "算分进度")
|
|
|
- @TableField(value = "progress")
|
|
|
+ //算分进度
|
|
|
private Double progress;
|
|
|
|
|
|
- @ApiModelProperty(value = "监考人工审核,now:实时审核,later:事后审核")
|
|
|
- @TableField(value = "invigilate_verify")
|
|
|
+ //监考人工审核,now:实时审核,later:事后审核
|
|
|
private InvigilateVerifyEnum invigilateVerify;
|
|
|
|
|
|
public InvigilateVerifyEnum getInvigilateVerify() {
|
|
@@ -464,4 +483,46 @@ public class ExamCacheBean extends BaseEntity {
|
|
|
public void setObjectiveScorePolicy(ObjectiveScorePolicyEnum objectiveScorePolicy) {
|
|
|
this.objectiveScorePolicy = objectiveScorePolicy;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCreateId() {
|
|
|
+ return createId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateId(Long createId) {
|
|
|
+ this.createId = createId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getUpdateId() {
|
|
|
+ return updateId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateId(Long updateId) {
|
|
|
+ this.updateId = updateId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|