|
@@ -208,7 +208,7 @@ public class TEExam extends BaseEntity {
|
|
this.inProcessFaceStrangerIgnore = teExamDto.getInProcessFaceStrangerIgnore();
|
|
this.inProcessFaceStrangerIgnore = teExamDto.getInProcessFaceStrangerIgnore();
|
|
this.inProcessLivenessVerify = teExamDto.getInProcessLivenessVerify();
|
|
this.inProcessLivenessVerify = teExamDto.getInProcessLivenessVerify();
|
|
if (Objects.nonNull(teExamDto.getInProcessLivenessFixedRange())) {
|
|
if (Objects.nonNull(teExamDto.getInProcessLivenessFixedRange())) {
|
|
- this.inProcessLivenessFixedRange = teExamDto.getInProcessLivenessFixedRange().toString().replace("[", "").replace("]", "");
|
|
|
|
|
|
+ this.inProcessLivenessFixedRange = teExamDto.getInProcessLivenessFixedRange().toString().trim().replace("[", "").replace("]", "");
|
|
}
|
|
}
|
|
this.inProcessLivenessJudgePolicy = teExamDto.getInProcessLivenessJudgePolicy();
|
|
this.inProcessLivenessJudgePolicy = teExamDto.getInProcessLivenessJudgePolicy();
|
|
this.recordSelectStrategy = teExamDto.getRecordSelectStrategy();
|
|
this.recordSelectStrategy = teExamDto.getRecordSelectStrategy();
|
|
@@ -217,7 +217,7 @@ public class TEExam extends BaseEntity {
|
|
this.scoreStatus = teExamDto.getScoreStatus();
|
|
this.scoreStatus = teExamDto.getScoreStatus();
|
|
this.objectiveScorePolicy = teExamDto.getObjectiveScorePolicy();
|
|
this.objectiveScorePolicy = teExamDto.getObjectiveScorePolicy();
|
|
if (Objects.nonNull(teExamDto.getMonitorVideoSource())) {
|
|
if (Objects.nonNull(teExamDto.getMonitorVideoSource())) {
|
|
- this.monitorVideoSource = teExamDto.getMonitorVideoSource().toString().replace("[", "").replace("]", "");
|
|
|
|
|
|
+ this.monitorVideoSource = teExamDto.getMonitorVideoSource().toString().trim().replace("[", "").replace("]", "");
|
|
}
|
|
}
|
|
this.monitorRecord = teExamDto.getMonitorRecord();
|
|
this.monitorRecord = teExamDto.getMonitorRecord();
|
|
this.progress = teExamDto.getProgress();
|
|
this.progress = teExamDto.getProgress();
|