|
@@ -424,7 +424,7 @@ public class MqLogicServiceImpl implements MqLogicService {
|
|
|
String tag = mqDto.getTag();
|
|
|
if (Objects.equals(tag, MqTagEnum.EXAM_RECORD_UPDATE.name())) {//单字段更新
|
|
|
Map<String, Object> param = (Map<String, Object>) mqDto.getBody();
|
|
|
- Long recordId = (Long) param.get("recordId");
|
|
|
+ Long recordId = Long.parseLong(String.valueOf(param.get("recordId")));
|
|
|
String colName = (String) param.get("colName");
|
|
|
Object colValue = param.get("colValue");
|
|
|
examRecordService.dataUpdate(recordId, colName, colValue);
|