...
|
...
|
@@ -132,9 +132,12 @@ public class LocationController { |
|
|
int i1 = locationMapper.updateByPrimaryKeySelective(location);
|
|
|
log.info("楼层编辑:{}", i1);
|
|
|
}else {
|
|
|
// 修改水表
|
|
|
locationMapper.updateByPrimaryKeySelective(location);
|
|
|
// 查询旧表 实时数据
|
|
|
WaterMeter realTime = waterMeterService.findRealTime(wmId);
|
|
|
log.info("旧表累计充值量:{}",realTime.getWmSacc());
|
|
|
log.info("旧表累计消费量:{}",realTime.getWmLacc());
|
|
|
// 充值新表
|
|
|
Map<String, Object> datas = new HashMap<>();
|
|
|
datas.put("MtId", location.getWmid());
|
...
|
...
|
@@ -143,7 +146,7 @@ public class LocationController { |
|
|
datas.put("Add_addmode", "3");
|
|
|
String status = HttpsUtils.httpRequest("http://123.56.159.203:8023/mtfmset/allWMadd", datas);
|
|
|
datas.put("status", status);
|
|
|
log.info("新表充值:{}",status);
|
|
|
log.info("新表充值返回状态:{}",status);
|
|
|
log.info("充值成功更新水表");
|
|
|
}
|
|
|
waterMeterSacc.setWmId(location.getWmid());
|
...
|
...
|
|