puzhibing
2023-06-12 d4f8078c2a062864dab885d6bd54fbe1195f85e2
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
package com.agentdriving.driver.modular.system.service;
 
import com.agentdriving.driver.modular.system.model.DriverBank;
import com.agentdriving.driver.modular.system.util.ResultUtil;
import com.baomidou.mybatisplus.service.IService;
 
/**
 * @author zhibing.pu
 * @date 2023/4/23 17:42
 */
public interface IDriverBankService extends IService<DriverBank> {
 
 
    /**
     * 添加银行卡
     * @param name
     * @param phone
     * @param IDCode
     * @param bankNumber
     * @return
     * @throws Exception
     */
    ResultUtil addDriverBank(Integer uid, String name, String phone, String IDCode, String bankNumber) throws Exception;
 
 
    /**
     * 删除银行卡
     * @param id
     * @return
     * @throws Exception
     */
    ResultUtil delDriverBank(Integer uid, Integer id) throws Exception;
}