|
@@ -485,7 +485,6 @@ public class MqLogicServiceImpl implements MqLogicService {
|
|
|
objectMap.put("lastBreakTime", new Date());
|
|
|
objectMap.put("leftBreakResumeCount", leftBreakResumeCount);
|
|
|
objectMap.put("lastStartTime", new Date());
|
|
|
- objectMap.put("exceptionStatus", exceptionEnum);
|
|
|
redisUtil.setForHash(RedisKeyHelper.examRecordCacheKey(recordId), objectMap);
|
|
|
UpdateWrapper<TOeExamRecord> tOeExamRecordUpdateWrapper = new UpdateWrapper<>();
|
|
|
tOeExamRecordUpdateWrapper.lambda().set(TOeExamRecord::getLastBreakId, tOeExamBreakHistory.getId())
|
|
@@ -493,7 +492,6 @@ public class MqLogicServiceImpl implements MqLogicService {
|
|
|
.set(TOeExamRecord::getLastBreakTime, objectMap.get("lastBreakTime"))
|
|
|
.set(TOeExamRecord::getLeftBreakResumeCount, leftBreakResumeCount)
|
|
|
.set(TOeExamRecord::getLastStartTime, objectMap.get("lastStartTime"))
|
|
|
- .set(TOeExamRecord::getExceptionStatus, exceptionEnum)
|
|
|
.eq(TOeExamRecord::getId, recordId);
|
|
|
examRecordService.update(tOeExamRecordUpdateWrapper);
|
|
|
teExamStudentLogService.saveStudentLogInfo(SystemOperationEnum.RESUME_PREPARE.name(), SystemOperationEnum.RESUME_PREPARE.getCode(), SystemOperationEnum.RESUME_PREPARE.getCode(), examStudentCacheBean.getStudentId(), examStudentId, recordId);
|