From 215f74a4a0246b53972b9a62c5be905f24ea1578 Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Sat, 8 Jul 2023 13:53:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jsowell/netty/handler/UploadRealTimeMonitorHandler.java | 3 --- .../pile/service/impl/PileConnectorInfoServiceImpl.java | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/jsowell-netty/src/main/java/com/jsowell/netty/handler/UploadRealTimeMonitorHandler.java b/jsowell-netty/src/main/java/com/jsowell/netty/handler/UploadRealTimeMonitorHandler.java index b3eb6edf5..a997dc1db 100644 --- a/jsowell-netty/src/main/java/com/jsowell/netty/handler/UploadRealTimeMonitorHandler.java +++ b/jsowell-netty/src/main/java/com/jsowell/netty/handler/UploadRealTimeMonitorHandler.java @@ -53,9 +53,6 @@ public class UploadRealTimeMonitorHandler extends AbstractHandler { @Autowired private IPileConnectorInfoService pileConnectorInfoService; - @Autowired - private IThirdPartySettingInfoService thirdPartySettingInfoService; - @Autowired private LianLianService lianLianService; diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileConnectorInfoServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileConnectorInfoServiceImpl.java index 80d20c413..fc27ac94a 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileConnectorInfoServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileConnectorInfoServiceImpl.java @@ -507,7 +507,7 @@ public class PileConnectorInfoServiceImpl implements IPileConnectorInfoService { } /** - * 修改枪口状态 + * 修改枪口状态 更新枪口状态 * 所有修改枪口状态的都要使用这个方法,和数据库交互只有这一个口子 * * @param pileConnectorCode 枪口编号 桩编号+枪口号 @@ -515,6 +515,7 @@ public class PileConnectorInfoServiceImpl implements IPileConnectorInfoService { */ @Override public int updateConnectorStatus(String pileConnectorCode, String status) { + log.info("更新枪口状态 pileConnectorCode:{}, status:{}", pileConnectorCode, status); int num = 0; if (StringUtils.isBlank(pileConnectorCode) || StringUtils.isBlank(status)) { return num;