update 高德

This commit is contained in:
2023-06-26 14:23:21 +08:00
parent e7aec156e8
commit e10e54ffb2
12 changed files with 109 additions and 25 deletions

View File

@@ -162,4 +162,6 @@ public interface IPileBasicInfoService {
* @return
*/
List<PileBasicInfo> getPileListByStationId(String stationId);
List<PileInfoVO> queryPileDetailList(List<String> stationIdList);
}

View File

@@ -653,4 +653,9 @@ public class PileBasicInfoServiceImpl implements IPileBasicInfoService {
}
return pileList;
}
@Override
public List<PileInfoVO> queryPileDetailList(List<String> stationIdList) {
return pileBasicInfoMapper.queryPileDetailList(stationIdList);
}
}