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()