|
@@ -324,6 +324,10 @@ public class MqLogicServiceImpl implements MqLogicService {
|
|
|
public void execMqExamBreakHistoryLogic(MqDto mqDto, String key) {
|
|
|
//更新考试记录
|
|
|
Map<String, Object> objectMap = JacksonUtil.readJson(String.valueOf(mqDto.getBody()), Map.class);
|
|
|
+ String status=(String)objectMap.get("status");
|
|
|
+ if(status!=null) {
|
|
|
+ objectMap.put("status", ExamRecordStatusEnum.valueOf(status));
|
|
|
+ }
|
|
|
Long recordId = Long.parseLong(mqDto.getObjId());
|
|
|
|
|
|
//先查询之前的断点记录
|