mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
update 高德推送动态数据
This commit is contained in:
@@ -155,8 +155,15 @@ public class AMapServiceImpl implements AMapService {
|
||||
List<AMapPictures> picturesList;
|
||||
AMapStationInfo aMapInfo;
|
||||
for (PileStationInfo stationInfo : stationList) {
|
||||
aMapInfo = new AMapStationInfo();
|
||||
String stationId = String.valueOf(stationInfo.getId());
|
||||
// 判断当前站点计费模板是否为空
|
||||
List<AMapPriceChargingInfo> aMapPriceChargingInfos = priceInfoMap.get(stationId);
|
||||
if (CollectionUtils.isEmpty(aMapPriceChargingInfos)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
aMapInfo = new AMapStationInfo();
|
||||
|
||||
aMapInfo.setStationID(stationId);
|
||||
aMapInfo.setOperatorID(Constants.OPERATORID_LIANLIAN);
|
||||
aMapInfo.setEquipmentOwnerID(Constants.OPERATORID_LIANLIAN);
|
||||
@@ -182,7 +189,6 @@ public class AMapServiceImpl implements AMapService {
|
||||
aMapInfo.setBusineHours(stationInfo.getBusinessHours());
|
||||
|
||||
// 计费模板
|
||||
List<AMapPriceChargingInfo> aMapPriceChargingInfos = priceInfoMap.get(stationId);
|
||||
aMapInfo.setPriceChargingInfo(aMapPriceChargingInfos);
|
||||
// 站点设备信息
|
||||
List<AMapEquipmentInfo> equipmentInfos = equipmentInfoMap.get(stationId);
|
||||
|
||||
Reference in New Issue
Block a user