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

69 lines
1.8 KiB
Java
Raw Normal View History

2024-04-18 17:26:08 +08:00
package com.jsowell.thirdparty.mapper;
2024-04-18 17:52:19 +08:00
import com.jsowell.pile.vo.ThirdPartySecretInfoVO;
2024-04-18 17:26:08 +08:00
import com.jsowell.thirdparty.domain.ThirdpartySecretInfo;
2024-04-18 18:06:37 +08:00
import org.springframework.stereotype.Repository;
2024-04-18 17:26:08 +08:00
import java.util.List;
/**
* 对接三方平台配置Mapper接口
2024-04-18 17:52:19 +08:00
*
2024-04-18 17:26:08 +08:00
* @author jsowell
* @date 2024-04-18
*/
2024-04-18 18:06:37 +08:00
@Repository
2024-04-18 17:52:19 +08:00
public interface ThirdpartySecretInfoMapper {
2024-04-18 17:26:08 +08:00
/**
* 查询对接三方平台配置
2024-04-18 17:52:19 +08:00
*
2024-04-18 17:26:08 +08:00
* @param id 对接三方平台配置主键
* @return 对接三方平台配置
*/
2024-04-18 17:52:19 +08:00
ThirdpartySecretInfo selectThirdpartySecretInfoById(Long id);
2024-04-18 17:26:08 +08:00
/**
* 查询对接三方平台配置列表
2024-04-18 17:52:19 +08:00
*
2024-04-18 17:26:08 +08:00
* @param thirdpartySecretInfo 对接三方平台配置
* @return 对接三方平台配置集合
*/
2024-04-18 17:52:19 +08:00
List<ThirdpartySecretInfo> selectThirdpartySecretInfoList(ThirdpartySecretInfo thirdpartySecretInfo);
2024-04-18 17:26:08 +08:00
/**
* 新增对接三方平台配置
2024-04-18 17:52:19 +08:00
*
2024-04-18 17:26:08 +08:00
* @param thirdpartySecretInfo 对接三方平台配置
* @return 结果
*/
2024-04-18 17:52:19 +08:00
int insertThirdpartySecretInfo(ThirdpartySecretInfo thirdpartySecretInfo);
2024-04-18 17:26:08 +08:00
/**
* 修改对接三方平台配置
2024-04-18 17:52:19 +08:00
*
2024-04-18 17:26:08 +08:00
* @param thirdpartySecretInfo 对接三方平台配置
* @return 结果
*/
2024-04-18 17:52:19 +08:00
int updateThirdpartySecretInfo(ThirdpartySecretInfo thirdpartySecretInfo);
2024-04-18 17:26:08 +08:00
/**
* 删除对接三方平台配置
2024-04-18 17:52:19 +08:00
*
2024-04-18 17:26:08 +08:00
* @param id 对接三方平台配置主键
* @return 结果
*/
2024-04-18 17:52:19 +08:00
int deleteThirdpartySecretInfoById(Long id);
2024-04-18 17:26:08 +08:00
/**
* 批量删除对接三方平台配置
2024-04-18 17:52:19 +08:00
*
2024-04-18 17:26:08 +08:00
* @param ids 需要删除的数据主键集合
* @return 结果
*/
2024-04-18 17:52:19 +08:00
int deleteThirdpartySecretInfoByIds(Long[] ids);
ThirdPartySecretInfoVO queryByOperatorId(String theirOperatorId);
2024-04-19 14:06:01 +08:00
ThirdPartySecretInfoVO queryByThirdPlatformType(String thirdPlatformType);
2024-04-18 17:26:08 +08:00
}