update 对接lianlian平台

This commit is contained in:
2024-04-18 17:52:19 +08:00
parent 80632ec121
commit c8d6859075
6 changed files with 172 additions and 120 deletions

View File

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