Commit 97194b90 authored by 李秀明's avatar 李秀明

注释代码

parent 0b12ab9b
...@@ -1036,26 +1036,26 @@ public class MqttReceiveServiceImpl implements MqttReceiveService { ...@@ -1036,26 +1036,26 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
equipmentSpeIndex.setEquipmentType(topicEntity.getType()); equipmentSpeIndex.setEquipmentType(topicEntity.getType());
equipmentSpeIndex.setUUID(UUIDUtils.getUUID()); equipmentSpeIndex.setUUID(UUIDUtils.getUUID());
if ("zd".equals(system)) { // if ("zd".equals(system)) {
// 收到信号触发规则恢复码判断 // // 收到信号触发规则恢复码判断
List<Map<String, String>> list = new ArrayList<>(); // List<Map<String, String>> list = new ArrayList<>();
Map<String, String> map = new HashMap<>(2); // Map<String, String> map = new HashMap<>(2);
map.put("sourceId", String.valueOf(equipmentSpecificIndex.getEquipmentSpecificId())); // map.put("sourceId", String.valueOf(equipmentSpecificIndex.getEquipmentSpecificId()));
map.put("indexValue", value); // map.put("indexValue", value);
map.put("specificIndexId", String.valueOf(equipmentSpecificIndex.getId())); // map.put("specificIndexId", String.valueOf(equipmentSpecificIndex.getId()));
list.add(map); // list.add(map);
EquipQrDateDto equipQrDateDto = new EquipQrDateDto(); // EquipQrDateDto equipQrDateDto = new EquipQrDateDto();
equipQrDateDto.setContrast("indexValue"); // equipQrDateDto.setContrast("indexValue");
equipQrDateDto.setSource("equip"); // equipQrDateDto.setSource("equip");
equipQrDateDto.setType(equipmentSpecificIndex.getTypeCode()); // equipQrDateDto.setType(equipmentSpecificIndex.getTypeCode());
equipQrDateDto.setData(list); // equipQrDateDto.setData(list);
log.error("调用规则JSON对象:{}", JSONObject.toJSONString(equipQrDateDto)); // log.error("调用规则JSON对象:{}", JSONObject.toJSONString(equipQrDateDto));
try { // try {
ruleTrigger.publish(equipQrDateDto, "中心配置赋码规则/update-qr-code", null); // ruleTrigger.publish(equipQrDateDto, "中心配置赋码规则/update-qr-code", null);
} catch (Exception e) { // } catch (Exception e) {
log.error("调用规则失败: {}", e.getMessage()); // log.error("调用规则失败: {}", e.getMessage());
} // }
} // }
//es存储数据 //es存储数据
eSeqService.saveESEquiplistSpecificBySystemESVO(equipmentSpeIndex, String.valueOf(vo.getSystemId()), vo.getSystemName()); eSeqService.saveESEquiplistSpecificBySystemESVO(equipmentSpeIndex, String.valueOf(vo.getSystemId()), vo.getSystemName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment