mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
将高德和第三方平台方法区分
This commit is contained in:
@@ -78,6 +78,9 @@ public interface PileStationInfoMapper {
|
||||
*/
|
||||
List<PileStationInfo> getStationInfoForLianLian();
|
||||
|
||||
|
||||
List<PileStationInfo> getStationInfoForAmap();
|
||||
|
||||
List<String> queryByStationDeptIds(@Param("stationDeptIds") List<String> stationDeptIds);
|
||||
|
||||
int updateAmapFlag(@Param("stationId") String stationId, @Param("amapFlag") String amapFlag);
|
||||
|
||||
@@ -94,6 +94,8 @@ public interface IPileStationInfoService {
|
||||
|
||||
List<PileStationInfo> getStationInfosByThirdParty();
|
||||
|
||||
List<PileStationInfo> getStationInfosByAmap();
|
||||
|
||||
List<String> queryByStationDeptIds(List<String> stationIds);
|
||||
|
||||
String selectAdapayMemberId(String stationId);
|
||||
|
||||
@@ -190,6 +190,11 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
|
||||
return pileStationInfoMapper.getStationInfoForLianLian();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PileStationInfo> getStationInfosByAmap() {
|
||||
return pileStationInfoMapper.getStationInfoForAmap();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> queryByStationDeptIds(List<String> stationIds) {
|
||||
return pileStationInfoMapper.queryByStationDeptIds(stationIds);
|
||||
|
||||
Reference in New Issue
Block a user