|
@@ -209,10 +209,10 @@ public class TEExamDto extends BaseEntity {
|
|
this.inProcessFaceStrangerIgnore = teExam.getInProcessFaceStrangerIgnore();
|
|
this.inProcessFaceStrangerIgnore = teExam.getInProcessFaceStrangerIgnore();
|
|
this.inProcessLivenessVerify = teExam.getInProcessLivenessVerify();
|
|
this.inProcessLivenessVerify = teExam.getInProcessLivenessVerify();
|
|
if (Objects.nonNull(teExam.getInProcessLivenessFixedRange())) {
|
|
if (Objects.nonNull(teExam.getInProcessLivenessFixedRange())) {
|
|
- String[] longs = teExam.getInProcessLivenessFixedRange().trim().split(",");
|
|
|
|
|
|
+ String[] longs = teExam.getInProcessLivenessFixedRange().trim().replaceAll(" ", "").split(",");
|
|
List inProcessLivenessFixedRange = new ArrayList();
|
|
List inProcessLivenessFixedRange = new ArrayList();
|
|
for (int i = 0; i < longs.length; i++) {
|
|
for (int i = 0; i < longs.length; i++) {
|
|
- Long l = Long.valueOf(longs[i].trim());
|
|
|
|
|
|
+ Long l = Long.valueOf(longs[i].trim().replaceAll(" ", ""));
|
|
inProcessLivenessFixedRange.add(l);
|
|
inProcessLivenessFixedRange.add(l);
|
|
}
|
|
}
|
|
setInProcessLivenessFixedRange(inProcessLivenessFixedRange);
|
|
setInProcessLivenessFixedRange(inProcessLivenessFixedRange);
|
|
@@ -224,7 +224,7 @@ public class TEExamDto extends BaseEntity {
|
|
this.scoreStatus = teExam.getScoreStatus();
|
|
this.scoreStatus = teExam.getScoreStatus();
|
|
this.objectiveScorePolicy = teExam.getObjectiveScorePolicy();
|
|
this.objectiveScorePolicy = teExam.getObjectiveScorePolicy();
|
|
if (Objects.nonNull(teExam.getMonitorVideoSource())) {
|
|
if (Objects.nonNull(teExam.getMonitorVideoSource())) {
|
|
- setMonitorVideoSource(Arrays.asList(teExam.getMonitorVideoSource().trim().split(",")));
|
|
|
|
|
|
+ setMonitorVideoSource(Arrays.asList(teExam.getMonitorVideoSource().trim().replaceAll(" ", "").split(",")));
|
|
}
|
|
}
|
|
this.monitorRecord = teExam.getMonitorRecord();
|
|
this.monitorRecord = teExam.getMonitorRecord();
|
|
this.progress = teExam.getProgress();
|
|
this.progress = teExam.getProgress();
|