package com.ruoyi.cwgl.mapper;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.BankConfig;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 银行账号配置Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-12-23
|
*/
|
public interface BankConfigMapper extends BaseMapper<BankConfig>
|
{
|
/**
|
* 查询银行账号配置
|
*
|
* @param id 银行账号配置ID
|
* @return 银行账号配置
|
*/
|
public BankConfig selectBankConfigById(Integer id);
|
|
/**
|
* 查询银行账号配置 记录数
|
*
|
* @param bankConfig 银行账号配置
|
* @return 银行账号配置集合
|
*/
|
public int selectBankConfigCount(BankConfig bankConfig);
|
|
/**
|
* 查询银行账号配置列表
|
*
|
* @param bankConfig 银行账号配置
|
* @return 银行账号配置集合
|
*/
|
public List<BankConfig> selectBankConfigList(BankConfig bankConfig);
|
|
/**
|
* 新增银行账号配置
|
*
|
* @param bankConfig 银行账号配置
|
* @return 结果
|
*/
|
public int insertBankConfig(BankConfig bankConfig);
|
|
/**
|
* 新增银行账号配置[批量]
|
*
|
* @param bankConfigs 银行账号配置
|
* @return 结果
|
*/
|
public int insertBankConfigBatch(List<BankConfig> bankConfigs);
|
|
/**
|
* 修改银行账号配置
|
*
|
* @param bankConfig 银行账号配置
|
* @return 结果
|
*/
|
public int updateBankConfig(BankConfig bankConfig);
|
|
/**
|
* 修改银行账号配置[批量]
|
*
|
* @param bankConfigs 银行账号配置
|
* @return 结果
|
*/
|
public int updateBankConfigBatch(List<BankConfig> bankConfigs);
|
|
/**
|
* 删除银行账号配置
|
*
|
* @param id 银行账号配置ID
|
* @return 结果
|
*/
|
public int deleteBankConfigById(Integer id);
|
|
/**
|
* 批量删除银行账号配置
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteBankConfigByIds(Integer[] ids);
|
}
|