mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-19 18:45:03 +08:00
update
This commit is contained in:
@@ -257,6 +257,17 @@ public class JsowellTask {
|
||||
SiChuanPlatformServiceImpl sichuanPlatformService = new SiChuanPlatformServiceImpl();
|
||||
sichuanPlatformService.notificationPowerInfo(stationIdList2);
|
||||
|
||||
// 吉林省平台推送充电站实时功率
|
||||
String thirdPartyType3 = ThirdPlatformTypeEnum.SI_CHUAN_PLATFORM.getTypeCode();
|
||||
List<StationInfoVO> stationInfoVOS3 = thirdPartyStationRelationService.selectStationList(thirdPartyType3);
|
||||
|
||||
List<String> stationIdList3 = stationInfoVOS3.stream()
|
||||
.map(StationInfoVO::getStationId)
|
||||
.collect(Collectors.toList());
|
||||
|
||||
JiLinPlatformServiceImpl jiLinPlatformService = new JiLinPlatformServiceImpl();
|
||||
jiLinPlatformService.notificationPowerInfo(stationIdList3);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -282,7 +293,7 @@ public class JsowellTask {
|
||||
guiZhouPlatformService.notificationOperationStatsInfo(stationId);
|
||||
}
|
||||
|
||||
//四川省平台推送充电站实时功率
|
||||
//四川省平台推送用能统计
|
||||
String thirdPartyType2 = ThirdPlatformTypeEnum.SI_CHUAN_PLATFORM.getTypeCode();
|
||||
List<StationInfoVO> stationInfoVOS2 = thirdPartyStationRelationService.selectStationList(thirdPartyType2);
|
||||
|
||||
@@ -294,6 +305,17 @@ public class JsowellTask {
|
||||
sichuanPlatformService.notificationOperationStatsInfo(stationId);
|
||||
}
|
||||
|
||||
// 吉林省平台推送充电站用能统计
|
||||
String thirdPartyType3 = ThirdPlatformTypeEnum.JI_LIN_PLATFORM.getTypeCode();
|
||||
List<StationInfoVO> stationInfoVOS3 = thirdPartyStationRelationService.selectStationList(thirdPartyType3);
|
||||
|
||||
List<String> stationIdList3 = stationInfoVOS3.stream()
|
||||
.map(StationInfoVO::getStationId)
|
||||
.collect(Collectors.toList());
|
||||
JiLinPlatformServiceImpl jiLinPlatformService = new JiLinPlatformServiceImpl();
|
||||
for (String stationId : stationIdList3) {
|
||||
jiLinPlatformService.notificationOperationStatsInfo(stationId);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user