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

View File

@@ -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<NMGSupEquipmentInfo> equipmentInfos;
private List<NMGSupEquipmentInfo> supEquipmentInfos;
}

View File

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