mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 12:35:07 +08:00
79 lines
1.9 KiB
Java
79 lines
1.9 KiB
Java
package com.jsowell.pile.mapper;
|
|
|
|
import java.util.List;
|
|
|
|
import com.jsowell.pile.domain.ThirdPartySettingInfo;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* 第三方平台配置Mapper接口
|
|
*
|
|
* @author jsowell
|
|
* @date 2023-05-24
|
|
*/
|
|
@Component
|
|
public interface ThirdPartySettingInfoMapper {
|
|
/**
|
|
* 查询第三方平台配置
|
|
*
|
|
* @param id 第三方平台配置主键
|
|
* @return 第三方平台配置
|
|
*/
|
|
public ThirdPartySettingInfo selectThirdPartySettingInfoById(Long id);
|
|
|
|
/**
|
|
* 查询第三方平台配置列表
|
|
*
|
|
* @param thirdPartySettingInfo 第三方平台配置
|
|
* @return 第三方平台配置集合
|
|
*/
|
|
public List<ThirdPartySettingInfo> selectThirdPartySettingInfoList(ThirdPartySettingInfo thirdPartySettingInfo);
|
|
|
|
/**
|
|
* 查询第三方平台配置信息
|
|
* @param info
|
|
* @return
|
|
*/
|
|
ThirdPartySettingInfo selectThirdInfo(ThirdPartySettingInfo info);
|
|
|
|
/**
|
|
* 新增第三方平台配置
|
|
*
|
|
* @param thirdPartySettingInfo 第三方平台配置
|
|
* @return 结果
|
|
*/
|
|
public int insertThirdPartySettingInfo(ThirdPartySettingInfo thirdPartySettingInfo);
|
|
|
|
/**
|
|
* 修改第三方平台配置
|
|
*
|
|
* @param thirdPartySettingInfo 第三方平台配置
|
|
* @return 结果
|
|
*/
|
|
public int updateThirdPartySettingInfo(ThirdPartySettingInfo thirdPartySettingInfo);
|
|
|
|
/**
|
|
* 删除第三方平台配置
|
|
*
|
|
* @param id 第三方平台配置主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteThirdPartySettingInfoById(Long id);
|
|
|
|
/**
|
|
* 批量删除第三方平台配置
|
|
*
|
|
* @param ids 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteThirdPartySettingInfoByIds(Long[] ids);
|
|
|
|
/**
|
|
* 根据站点id 查询配置列表
|
|
*
|
|
* @param stationId
|
|
* @return
|
|
*/
|
|
public ThirdPartySettingInfo getInfoByStationId(Long stationId);
|
|
}
|