Commit f3a105af7dbd53ad04e0a54e50a8266f05228a66

Authored by 朱园亮
1 parent 611481f1

同池上报水电能源数据调整日志

@@ -52,7 +52,7 @@ public class KSDeviceReportService { @@ -52,7 +52,7 @@ public class KSDeviceReportService {
52 private String channelSn; 52 private String channelSn;
53 53
54 public void deviceElectricity() { 54 public void deviceElectricity() {
55 - log.info("开始执行凯盛电表设备属性上报任务"); 55 + log.info("开始执行同池电表设备属性上报任务");
56 try { 56 try {
57 List<Object> needSyncDataList = initConnectAndSelectData("E"); 57 List<Object> needSyncDataList = initConnectAndSelectData("E");
58 if (CollectionUtils.isEmpty(needSyncDataList)) { 58 if (CollectionUtils.isEmpty(needSyncDataList)) {
@@ -148,12 +148,12 @@ public class KSDeviceReportService { @@ -148,12 +148,12 @@ public class KSDeviceReportService {
148 } catch (Exception e) { 148 } catch (Exception e) {
149 log.error("sn执行电表设备属性上报任务时发生异常", e); 149 log.error("sn执行电表设备属性上报任务时发生异常", e);
150 } finally { 150 } finally {
151 - log.info("凯盛电表设备属性上报任务执行结束"); 151 + log.info("同池电表设备属性上报任务执行结束");
152 } 152 }
153 } 153 }
154 154
155 public void deviceWater() { 155 public void deviceWater() {
156 - log.info("开始执行凯盛水表设备属性上报任务"); 156 + log.info("开始执行同池水表设备属性上报任务");
157 try { 157 try {
158 List<Object> needSyncDataList = initConnectAndSelectData("W"); 158 List<Object> needSyncDataList = initConnectAndSelectData("W");
159 if (CollectionUtils.isEmpty(needSyncDataList)) { 159 if (CollectionUtils.isEmpty(needSyncDataList)) {
@@ -236,7 +236,7 @@ public class KSDeviceReportService { @@ -236,7 +236,7 @@ public class KSDeviceReportService {
236 } catch (Exception e) { 236 } catch (Exception e) {
237 log.error("水表执行设备属性上报任务时发生异常", e); 237 log.error("水表执行设备属性上报任务时发生异常", e);
238 } finally { 238 } finally {
239 - log.info("凯盛水表设备属性上报任务执行结束"); 239 + log.info("同池水表设备属性上报任务执行结束");
240 } 240 }
241 } 241 }
242 242