wujianwei
2026-01-19 15178bafd7aa1827e6c48fda8e2cc3b8df0bbf5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.ruoyi.cwgl.mapper;
 
import java.util.List;
import com.ruoyi.cwgl.domain.BankAccountConfig;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
 
/**
 * 银行账号配置Mapper接口
 * 
 * @author ruoyi
 * @date 2025-12-15
 */
public interface BankAccountConfigMapper  extends BaseMapper<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 银行账号配置
     * @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 id 银行账号配置ID
     * @return 结果
     */
    public int deleteBankAccountConfigById(Integer id);
 
    /**
     * 批量删除银行账号配置
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteBankAccountConfigByIds(Integer[] ids);
}