update 平台配置页面

This commit is contained in:
2024-04-24 17:08:14 +08:00
parent bf0e3f5334
commit 9ed65fbd23
13 changed files with 375 additions and 42 deletions

View File

@@ -2,6 +2,7 @@ package com.jsowell.pile.service;
import com.jsowell.pile.domain.ThirdPartyStationRelation;
import com.jsowell.pile.vo.base.MerchantInfoVO;
import com.jsowell.pile.vo.base.StationInfoVO;
import com.jsowell.pile.vo.base.ThirdPartyStationRelationVO;
import java.util.List;
@@ -95,5 +96,17 @@ public interface ThirdPartyStationRelationService {
int updateRelationDelFlag(String stationId, List<String> types);
/**
* 根据第三方平台类型查询对接第三方平台的运营商列表
* @param thirdPlatformType
* @return
*/
List<MerchantInfoVO> selectMerchantList(String thirdPlatformType);
/**
* 根据第三方平台类型查询对接第三方平台的站点列表
* @param thirdPlatformType
* @return
*/
List<StationInfoVO> selectStationList(String thirdPlatformType);
}