This commit is contained in:
YAS\29473
2025-10-31 13:45:25 +08:00
parent 6141ee0dc9
commit 2028391d3a
2 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ import java.util.List;
@Data @Data
@NoArgsConstructor @NoArgsConstructor
@AllArgsConstructor @AllArgsConstructor
@SuperBuilder //@SuperBuilder
public class NMGSupStationInfo extends StationInfo { public class NMGSupStationInfo extends StationInfo {
/** /**
* 充换电站唯一编码 * 充换电站唯一编码
@@ -178,5 +178,5 @@ public class NMGSupStationInfo extends StationInfo {
* 该充电站所有充电设备信息对象集合 * 该充电站所有充电设备信息对象集合
*/ */
@JSONField(name = "EquipmentInfos") @JSONField(name = "EquipmentInfos")
private List<NMGSupEquipmentInfo> equipmentInfos; private List<NMGSupEquipmentInfo> supEquipmentInfos;
} }

View File

@@ -296,7 +296,7 @@ public class NeiMengGuPlatformServiceImpl implements ThirdPartyPlatformService {
stationInfo.setParkingLockFlag(Integer.valueOf(pileStationInfo.getParkingLockFlag())); stationInfo.setParkingLockFlag(Integer.valueOf(pileStationInfo.getParkingLockFlag()));
List<NMGSupEquipmentInfo> pileList = getPileEquipmentList(stationId); List<NMGSupEquipmentInfo> pileList = getPileEquipmentList(stationId);
if (CollectionUtils.isNotEmpty(pileList)) { if (CollectionUtils.isNotEmpty(pileList)) {
stationInfo.setEquipmentInfos(pileList); // 充电设备信息列表 stationInfo.setSupEquipmentInfos(pileList); // 充电设备信息列表
} }
// 额定功率 // 额定功率
BigDecimal stationRatedPower = pileList.stream() BigDecimal stationRatedPower = pileList.stream()