This commit is contained in:
2024-01-23 15:12:07 +08:00
parent e4c91d54e7
commit 33fbc33c88
8 changed files with 549 additions and 63 deletions

View File

@@ -1,10 +1,10 @@
package com.jsowell.pile.service;
import java.util.List;
import com.jsowell.pile.domain.ThirdPartyStationRelation;
import com.jsowell.pile.vo.base.ThirdPartyStationRelationVO;
import java.util.List;
/**
* 站点、第三方推送平台配置对应Service接口
*
@@ -28,6 +28,20 @@ public interface ThirdPartyStationRelationService {
*/
public List<ThirdPartyStationRelation> selectThirdPartyStationRelationList(ThirdPartyStationRelation thirdPartyStationRelation);
/**
* 通过站点id查询相关配置信息
* @param stationId 站点id String类型
* @return 相关配置信息
*/
ThirdPartyStationRelationVO selectRelationInfo(String stationId);
/**
* 通过站点id查询相关配置信息
* @param stationId 站点id Long类型
* @return 相关配置信息
*/
ThirdPartyStationRelationVO selectRelationInfo(long stationId);
/**
* 查询站点、第三方推送平台配置
* @param thirdPartyStationRelation