|
@@ -50,20 +50,22 @@ public class ValveStatusReceiver {
|
|
|
|
|
|
operatingValveRecordMapper.updateStatus(operatingValveRecordMessage);
|
|
|
}
|
|
|
- if(operatingValveRecordMessage==null){
|
|
|
- operatingValveRecordMessage=new OperatingValveRecord();
|
|
|
- operatingValveRecordMessage.setWaterNo(valveControlDataDto.getMeterNo());
|
|
|
- operatingValveRecordMessage.setCustomerId(valveControlDataDto.getCustomerId());
|
|
|
- }
|
|
|
- Device device=operatingValveRecordMapper.getDevice(operatingValveRecordMessage);
|
|
|
- if(device!=null){
|
|
|
- log.info("同步水表阀门状态 电子号={}",device.getMetercode());
|
|
|
- Map<String,Object>valveMessage=new HashMap<>();
|
|
|
- valveMessage.put("meterNo",device.getMetercode());
|
|
|
- valveMessage.put("meterStatus",Integer.parseInt(valveControlDataDto.getValve()));
|
|
|
- kafkaTemplate.send(billingValveStatusReceiving, JSONUtils.obj2json(valveMessage));
|
|
|
- }
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ if(operatingValveRecordMessage==null){
|
|
|
+ operatingValveRecordMessage=new OperatingValveRecord();
|
|
|
+ operatingValveRecordMessage.setWaterNo(valveControlDataDto.getMeterNo());
|
|
|
+ operatingValveRecordMessage.setCustomerId(valveControlDataDto.getCustomerId());
|
|
|
+ }
|
|
|
+ Device device=operatingValveRecordMapper.getDevice(operatingValveRecordMessage);
|
|
|
+ if(device!=null){
|
|
|
+ log.info("同步水表阀门状态 电子号={}",device.getMetercode());
|
|
|
+ Map<String,Object>valveMessage=new HashMap<>();
|
|
|
+ valveMessage.put("meterNo",device.getMetercode());
|
|
|
+ valveMessage.put("meterStatus",Integer.parseInt(valveControlDataDto.getValve()));
|
|
|
+ kafkaTemplate.send(billingValveStatusReceiving, JSONUtils.obj2json(valveMessage));
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|