mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-13 14:30:08 +08:00
update
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user