update 平台配置页面

This commit is contained in:
2024-04-29 17:24:16 +08:00
parent e5b3ea7989
commit a41749a127
10 changed files with 222 additions and 29 deletions

View File

@@ -35,6 +35,7 @@ public interface ThirdPartyStationRelationMapper {
/**
* 查询站点、第三方推送平台配置
*
* @param thirdPartyStationRelation
* @return
*/
@@ -72,9 +73,11 @@ public interface ThirdPartyStationRelationMapper {
*/
public int deleteThirdPartyStationRelationByIds(Long[] ids);
int deleteThirdPartyStationRelationByStationId(String stationId);
/**
* 通过站点id查询该站点对接了哪些第三方平台
*
* @param stationId
* @return
*/
@@ -82,6 +85,7 @@ public interface ThirdPartyStationRelationMapper {
/**
* 修改删除标识为1
*
* @param stationId
* @param type
* @return
@@ -90,6 +94,7 @@ public interface ThirdPartyStationRelationMapper {
/**
* 根据第三方平台类型查询对接第三方平台的运营商列表
*
* @param thirdPlatformType
* @return
*/
@@ -97,8 +102,15 @@ public interface ThirdPartyStationRelationMapper {
/**
* 根据第三方平台类型查询对接第三方平台的站点列表
*
* @param thirdPlatformType
* @return
*/
List<StationInfoVO> selectStationList(String thirdPlatformType);
List<ThirdPartyStationRelation> selectRelationListByStationId(String stationId);
int insertOrUpdateSelective(ThirdPartyStationRelation thirdPartyStationRelation);
int batchInsert(List<ThirdPartyStationRelation> list);
}