xuhy
2025-01-07 e29bb239dc2a5d4d0eee765d870522ad877e03e4
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
package com.stylefeng.guns.modular.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.stylefeng.guns.modular.system.model.Car;
import com.stylefeng.guns.modular.system.model.TWithdrawal;
import com.stylefeng.guns.modular.system.util.ResultUtil;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import java.util.Map;
 
public interface ITWithdrawalService extends IService<TWithdrawal> {
 
 
    /**
     * 添加提现记录
     * @param receivePaymentName
     * @param receivePaymentAccount
     * @param withdrawalType
     * @param openBank
     * @param withdrawalMoney
     * @param uid
     */
    void addWithdrawal(String receivePaymentName, String receivePaymentAccount, Integer withdrawalType, String openBank, BigDecimal withdrawalMoney, Integer uid);
 
    /**
     * 查询提现记录
     * @param pageNum
     * @param size
     * @param uid
     * @return
     */
//    List<TWithdrawal> queryList(Integer pageNum, Integer size, Integer uid);
}