update 第三方平台整合方法

This commit is contained in:
Lemon
2025-02-12 08:57:57 +08:00
parent 69596d2416
commit b85780f576
8 changed files with 109 additions and 58 deletions

View File

@@ -112,4 +112,6 @@ public interface ThirdPartyStationRelationService {
* @return
*/
List<StationInfoVO> selectStationList(String thirdPlatformType);
List<ThirdPartyStationRelationVO> getRelationInfoListV2(String stationId);
}

View File

@@ -128,6 +128,10 @@ public class ThirdPartyStationRelationServiceImpl implements ThirdPartyStationRe
return thirdPartyStationRelationMapper.getRelationInfoList(stationId);
}
public List<ThirdPartyStationRelationVO> getRelationInfoListV2(String stationId) {
return thirdPartyStationRelationMapper.getRelationInfoListV2(stationId);
}
/**
* 新增站点、第三方推送平台配置对应
*