From bc59e2deb342c41beafa57987d0b2235c5b1cff9 Mon Sep 17 00:00:00 2001 From: yuyang <2265829957@qq.com> Date: Thu, 21 Oct 2021 15:29:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=A8=E9=87=8A=E6=89=B9=E9=87=8F=E5=AF=BC?= =?UTF-8?q?=E5=85=A5=E6=A1=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../station/service/XhpcChargingStationServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/service/XhpcChargingStationServiceImpl.java b/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/service/XhpcChargingStationServiceImpl.java index 7f71e0b6..31dc4cd8 100644 --- a/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/service/XhpcChargingStationServiceImpl.java +++ b/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/service/XhpcChargingStationServiceImpl.java @@ -994,10 +994,10 @@ public class XhpcChargingStationServiceImpl implements IXhpcChargingStationServi if (set != null && set.size() > 0) { if (status == 0) { //添加场站下面的所有桩 - powerPileService.addPileWhitelist(chargingStationId, set); + //powerPileService.addPileWhitelist(chargingStationId, set); } else { //删除场站下面的所有桩 - powerPileService.deletePileWhitelist(chargingStationId, set); + //powerPileService.deletePileWhitelist(chargingStationId, set); } } }