1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.agentdriving.driver.modular.system.service;
|
| import com.agentdriving.driver.modular.system.model.CashWithdrawal;
| import com.agentdriving.driver.modular.system.util.ResultUtil;
| import com.baomidou.mybatisplus.service.IService;
|
|
| /**
| * @author zhibing.pu
| * @date 2023/3/18 17:03
| */
| public interface ICashWithdrawalService extends IService<CashWithdrawal> {
|
|
| /**
| * 司机提现申请
| * @param type
| * @param money
| * @return
| * @throws Exception
| */
| ResultUtil withdrawCash(Integer driverId, Integer type, Double money) throws Exception;
| }
|
|