From 2028391d3a46a334f2fba5544447fdebdee50452 Mon Sep 17 00:00:00 2001 From: "YAS\\29473" <2947326429@qq.com> Date: Fri, 31 Oct 2025 13:45:25 +0800 Subject: [PATCH] update --- .../thirdparty/platform/domain/NMG/NMGSupStationInfo.java | 4 ++-- .../platform/service/impl/NeiMengGuPlatformServiceImpl.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/domain/NMG/NMGSupStationInfo.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/domain/NMG/NMGSupStationInfo.java index b31197aa4..8565fe76d 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/domain/NMG/NMGSupStationInfo.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/domain/NMG/NMGSupStationInfo.java @@ -17,7 +17,7 @@ import java.util.List; @Data @NoArgsConstructor @AllArgsConstructor -@SuperBuilder +//@SuperBuilder public class NMGSupStationInfo extends StationInfo { /** * 充换电站唯一编码 @@ -178,5 +178,5 @@ public class NMGSupStationInfo extends StationInfo { * 该充电站所有充电设备信息对象集合 */ @JSONField(name = "EquipmentInfos") - private List equipmentInfos; + private List supEquipmentInfos; } diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/NeiMengGuPlatformServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/NeiMengGuPlatformServiceImpl.java index 73613abf0..f33a80084 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/NeiMengGuPlatformServiceImpl.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/NeiMengGuPlatformServiceImpl.java @@ -296,7 +296,7 @@ public class NeiMengGuPlatformServiceImpl implements ThirdPartyPlatformService { stationInfo.setParkingLockFlag(Integer.valueOf(pileStationInfo.getParkingLockFlag())); List pileList = getPileEquipmentList(stationId); if (CollectionUtils.isNotEmpty(pileList)) { - stationInfo.setEquipmentInfos(pileList); // 充电设备信息列表 + stationInfo.setSupEquipmentInfos(pileList); // 充电设备信息列表 } // 额定功率 BigDecimal stationRatedPower = pileList.stream()