2023-06-06 08:57:30 +08:00
|
|
|
package com.jsowell.pile.mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2023-07-07 14:40:19 +08:00
|
|
|
import com.jsowell.pile.domain.ThirdPartyStationRelation;
|
|
|
|
|
import com.jsowell.pile.vo.base.ThirdPartyStationRelationVO;
|
2023-06-06 08:57:30 +08:00
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 站点、第三方推送平台配置对应Mapper接口
|
|
|
|
|
*
|
|
|
|
|
* @author jsowell
|
|
|
|
|
* @date 2023-06-06
|
|
|
|
|
*/
|
|
|
|
|
@Component
|
2023-07-07 14:40:19 +08:00
|
|
|
public interface ThirdPartyStationRelationMapper {
|
2023-06-06 08:57:30 +08:00
|
|
|
/**
|
|
|
|
|
* 查询站点、第三方推送平台配置对应
|
|
|
|
|
*
|
|
|
|
|
* @param id 站点、第三方推送平台配置对应主键
|
|
|
|
|
* @return 站点、第三方推送平台配置对应
|
|
|
|
|
*/
|
2023-07-07 14:40:19 +08:00
|
|
|
public ThirdPartyStationRelation selectThirdPartyStationRelationById(Long id);
|
2023-06-06 08:57:30 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询站点、第三方推送平台配置对应列表
|
|
|
|
|
*
|
2023-07-07 14:40:19 +08:00
|
|
|
* @param thirdPartyStationRelation 站点、第三方推送平台配置对应
|
2023-06-06 08:57:30 +08:00
|
|
|
* @return 站点、第三方推送平台配置对应集合
|
|
|
|
|
*/
|
2023-07-07 14:40:19 +08:00
|
|
|
public List<ThirdPartyStationRelation> selectThirdPartyStationRelationList(ThirdPartyStationRelation thirdPartyStationRelation);
|
2023-06-06 08:57:30 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询站点、第三方推送平台配置
|
2023-07-07 14:40:19 +08:00
|
|
|
* @param thirdPartyStationRelation
|
2023-06-06 08:57:30 +08:00
|
|
|
* @return
|
|
|
|
|
*/
|
2023-07-07 14:40:19 +08:00
|
|
|
ThirdPartyStationRelationVO selectRelationInfo(ThirdPartyStationRelation thirdPartyStationRelation);
|
2023-06-06 08:57:30 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增站点、第三方推送平台配置对应
|
|
|
|
|
*
|
2023-07-07 14:40:19 +08:00
|
|
|
* @param thirdPartyStationRelation 站点、第三方推送平台配置对应
|
2023-06-06 08:57:30 +08:00
|
|
|
* @return 结果
|
|
|
|
|
*/
|
2023-07-07 14:40:19 +08:00
|
|
|
public int insertThirdPartyStationRelation(ThirdPartyStationRelation thirdPartyStationRelation);
|
2023-06-06 08:57:30 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改站点、第三方推送平台配置对应
|
|
|
|
|
*
|
2023-07-07 14:40:19 +08:00
|
|
|
* @param thirdPartyStationRelation 站点、第三方推送平台配置对应
|
2023-06-06 08:57:30 +08:00
|
|
|
* @return 结果
|
|
|
|
|
*/
|
2023-07-07 14:40:19 +08:00
|
|
|
public int updateThirdPartyStationRelation(ThirdPartyStationRelation thirdPartyStationRelation);
|
2023-06-06 08:57:30 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除站点、第三方推送平台配置对应
|
|
|
|
|
*
|
|
|
|
|
* @param id 站点、第三方推送平台配置对应主键
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
2023-07-07 14:40:19 +08:00
|
|
|
public int deleteThirdPartyStationRelationById(Long id);
|
2023-06-06 08:57:30 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除站点、第三方推送平台配置对应
|
|
|
|
|
*
|
|
|
|
|
* @param ids 需要删除的数据主键集合
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
2023-07-07 14:40:19 +08:00
|
|
|
public int deleteThirdPartyStationRelationByIds(Long[] ids);
|
2023-06-06 08:57:30 +08:00
|
|
|
}
|