package com.ruoyi.cwgl.service;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.BankAccountConfig;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 银行账号配置Service接口
|
*
|
* @author ruoyi
|
* @date 2025-12-15
|
*/
|
public interface IBankAccountConfigService extends IService<BankAccountConfig>
|
{
|
/**
|
* 查询银行账号配置
|
*
|
* @param id 银行账号配置ID
|
* @return 银行账号配置
|
*/
|
public BankAccountConfig selectBankAccountConfigById(Integer id);
|
|
/**
|
* 查询银行账号配置 记录数
|
*
|
* @param bankAccountConfig 银行账号配置
|
* @return 银行账号配置集合
|
*/
|
public int selectBankAccountConfigCount(BankAccountConfig bankAccountConfig);
|
|
/**
|
* 查询银行账号配置列表
|
*
|
* @param bankAccountConfig 银行账号配置
|
* @return 银行账号配置集合
|
*/
|
public List<BankAccountConfig> selectBankAccountConfigList(BankAccountConfig bankAccountConfig);
|
|
/**
|
* 查询银行账号配置列表 异步 导出
|
*
|
* @param bankAccountConfig 银行账号配置
|
* @param exportKey 导出功能的唯一标识
|
* @return 银行账号配置集合
|
*/
|
public void export(BankAccountConfig bankAccountConfig, String exportKey) ;
|
|
|
/**
|
* 新增银行账号配置
|
*
|
* @param bankAccountConfig 银行账号配置
|
* @return 结果
|
*/
|
public int insertBankAccountConfig(BankAccountConfig bankAccountConfig);
|
|
/**
|
* 新增银行账号配置[批量]
|
*
|
* @param bankAccountConfigs 银行账号配置
|
* @return 结果
|
*/
|
public int insertBankAccountConfigBatch(List<BankAccountConfig> bankAccountConfigs);
|
|
/**
|
* 修改银行账号配置
|
*
|
* @param bankAccountConfig 银行账号配置
|
* @return 结果
|
*/
|
public int updateBankAccountConfig(BankAccountConfig bankAccountConfig);
|
|
/**
|
* 修改银行账号配置[批量]
|
*
|
* @param bankAccountConfigs 银行账号配置
|
* @return 结果
|
*/
|
public int updateBankAccountConfigBatch(List<BankAccountConfig> bankAccountConfigs);
|
/**
|
* 批量删除银行账号配置
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteBankAccountConfigByIds(String ids);
|
|
/**
|
* 批量删除银行账号配置
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteBankAccountConfigByIds(Integer[] ids);
|
|
/**
|
* 删除银行账号配置信息
|
*
|
* @param id 银行账号配置ID
|
* @return 结果
|
*/
|
public int deleteBankAccountConfigById(Integer id);
|
}
|