Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/mapper/ThirdPartyStationRelationMapper.java

72 lines
2.3 KiB
Java
Raw Normal View History

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