diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/service/impl/AMapServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/service/impl/AMapServiceImpl.java index fcf75cb18..515c09dd2 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/service/impl/AMapServiceImpl.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/service/impl/AMapServiceImpl.java @@ -141,6 +141,7 @@ public class AMapServiceImpl implements AMapService { } // 站点id List stationIdList = stationList.stream().map(x -> String.valueOf(x.getId())).collect(Collectors.toList()); + // 第二次查询,得到计费模板信息 Map> priceInfoMap = getPriceInfoByStationIdList(stationIdList); @@ -422,6 +423,11 @@ public class AMapServiceImpl implements AMapService { return pileList; } + /** + * 查询站点设备信息-高德 + * @param stationIdList + * @return + */ private Map> getPileListByStationIdList(List stationIdList) { Map> resultMap = Maps.newHashMap(); return resultMap;