@@ -148,6 +148,11 @@ public class ExamRecordDataServiceImpl implements ExamRecordDataService {
}
if (null != calcFaceBiopsyResultResp.getFaceVerifyResult()) {
examRecordData.setFaceVerifyResult(calcFaceBiopsyResultResp.getFaceVerifyResult());
+
+ //活检失败,则认为违纪
+ if (IsSuccess.FAILED == calcFaceBiopsyResultResp.getFaceVerifyResult()) {
+ examRecordData.setIsIllegality(true);
+ }
@@ -139,6 +139,7 @@ public class SyncExamDataExecutor implements NodeExecuter<Long, ExamRecordData,
+ //同步数据
syncExamDataCloudService.syncExamData(syncReq);
this.debugLog("sync data success,and to be change status...", examRecordDataId);