|
@@ -1,14 +1,13 @@
|
|
|
package com.qmth.themis.business.entity;
|
|
|
|
|
|
-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.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* @Description: 考试批次
|
|
|
* @Param:
|
|
@@ -80,30 +79,10 @@ public class TEExam extends BaseEntity {
|
|
|
@TableField(value = "break_resume_count")
|
|
|
private Integer breakResumeCount;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否开启/强制客户端视频监控,0:不开启,1:开启,2:强制开启")
|
|
|
- @TableField(value = "client_video_push")
|
|
|
- private Integer clientVideoPush;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "是否开启客户端视频转录,0:不开启,1:开启")
|
|
|
- @TableField(value = "client_video_record")
|
|
|
- private Integer clientVideoRecord;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "是否开启/强制微信小程序监控,0:不开启,1:开启,2:强制开启")
|
|
|
- @TableField(value = "wxapp_video_push")
|
|
|
- private Integer wxappVideoPush;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "是否开启微信小程序视频转录,0:不开启,1:开启")
|
|
|
- @TableField(value = "wxapp_video_record")
|
|
|
- private Integer wxappVideoRecord;
|
|
|
-
|
|
|
@ApiModelProperty(value = "是否允许使用摄像头拍照答题,0:不允许,1:允许")
|
|
|
@TableField(value = "camera_photo_upload")
|
|
|
private Integer cameraPhotoUpload;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否允许使用微信拍照答题,0:不允许,1:允许")
|
|
|
- @TableField(value = "wxapp_photo_upload")
|
|
|
- private Integer wxappPhotoUpload;
|
|
|
-
|
|
|
@ApiModelProperty(value = "重考是否审批,0:不审批,1:审批")
|
|
|
@TableField(value = "reexam_auditing")
|
|
|
private Integer reexamAuditing;
|
|
@@ -156,10 +135,6 @@ public class TEExam extends BaseEntity {
|
|
|
@TableField(value = "in_process_liveness_fixed_range")
|
|
|
private String inProcessLivenessFixedRange;
|
|
|
|
|
|
- @ApiModelProperty(value = "考试过程中活体检测重试次数")
|
|
|
- @TableField(value = "in_process_liveness_retry_count")
|
|
|
- private Integer inProcessLivenessRetryCount;
|
|
|
-
|
|
|
@ApiModelProperty(value = "考试过程中活体检测结果判定规则,any:任意一次通过,all:全部都要通过,more:通过次数大于失败次数")
|
|
|
@TableField(value = "in_process_liveness_judge_policy")
|
|
|
private InProcessLivenessJudgePolicyEnum inProcessLivenessJudgePolicy;
|
|
@@ -180,14 +155,6 @@ public class TEExam extends BaseEntity {
|
|
|
@TableField(value = "score_status")
|
|
|
private ScoreStatusEnum scoreStatus;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否启用开考口令,0:不启用,1:启用")
|
|
|
- @TableField(value = "enable_short_code")
|
|
|
- private Integer enableShortCode;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "是否允许断点续考,0:不允许,1:允许")
|
|
|
- @TableField(value = "enable_break")
|
|
|
- private Integer enableBreak;
|
|
|
-
|
|
|
@ApiModelProperty(value = "客观题给分策略,equal: 全对给分,partial: 漏选给一半分")
|
|
|
@TableField(value = "objective_score_policy")
|
|
|
private ObjectiveScorePolicyEnum objectiveScorePolicy;
|
|
@@ -228,22 +195,6 @@ public class TEExam extends BaseEntity {
|
|
|
this.monitorRecord = monitorRecord;
|
|
|
}
|
|
|
|
|
|
- public Integer getEnableBreak() {
|
|
|
- return enableBreak;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEnableBreak(Integer enableBreak) {
|
|
|
- this.enableBreak = enableBreak;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getEnableShortCode() {
|
|
|
- return enableShortCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEnableShortCode(Integer enableShortCode) {
|
|
|
- this.enableShortCode = enableShortCode;
|
|
|
- }
|
|
|
-
|
|
|
public ExamModeEnum getMode() {
|
|
|
return mode;
|
|
|
}
|
|
@@ -332,14 +283,6 @@ public class TEExam extends BaseEntity {
|
|
|
this.inProcessLivenessFixedRange = inProcessLivenessFixedRange;
|
|
|
}
|
|
|
|
|
|
- public Integer getInProcessLivenessRetryCount() {
|
|
|
- return inProcessLivenessRetryCount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInProcessLivenessRetryCount(Integer inProcessLivenessRetryCount) {
|
|
|
- this.inProcessLivenessRetryCount = inProcessLivenessRetryCount;
|
|
|
- }
|
|
|
-
|
|
|
public InProcessLivenessJudgePolicyEnum getInProcessLivenessJudgePolicy() {
|
|
|
return inProcessLivenessJudgePolicy;
|
|
|
}
|
|
@@ -504,54 +447,6 @@ public class TEExam extends BaseEntity {
|
|
|
this.breakResumeCount = breakResumeCount;
|
|
|
}
|
|
|
|
|
|
- public Integer getClientVideoPush() {
|
|
|
- return clientVideoPush;
|
|
|
- }
|
|
|
-
|
|
|
- public void setClientVideoPush(Integer clientVideoPush) {
|
|
|
- this.clientVideoPush = clientVideoPush;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getClientVideoRecord() {
|
|
|
- return clientVideoRecord;
|
|
|
- }
|
|
|
-
|
|
|
- public void setClientVideoRecord(Integer clientVideoRecord) {
|
|
|
- this.clientVideoRecord = clientVideoRecord;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getWxappVideoPush() {
|
|
|
- return wxappVideoPush;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWxappVideoPush(Integer wxappVideoPush) {
|
|
|
- this.wxappVideoPush = wxappVideoPush;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getWxappVideoRecord() {
|
|
|
- return wxappVideoRecord;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWxappVideoRecord(Integer wxappVideoRecord) {
|
|
|
- this.wxappVideoRecord = wxappVideoRecord;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getCameraPhotoUpload() {
|
|
|
- return cameraPhotoUpload;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCameraPhotoUpload(Integer cameraPhotoUpload) {
|
|
|
- this.cameraPhotoUpload = cameraPhotoUpload;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getWxappPhotoUpload() {
|
|
|
- return wxappPhotoUpload;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWxappPhotoUpload(Integer wxappPhotoUpload) {
|
|
|
- this.wxappPhotoUpload = wxappPhotoUpload;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getReexamAuditing() {
|
|
|
return reexamAuditing;
|
|
|
}
|