| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.stylefeng.guns.modular.system.model.Car; |
| | | import com.stylefeng.guns.modular.system.model.TWithdrawal; |
| | |
| | | * @param withdrawalMoney |
| | | * @param uid |
| | | */ |
| | | void addWithdrawal(String receivePaymentName, String receivePaymentAccount, Integer withdrawalType, String openBank, BigDecimal withdrawalMoney, Integer uid); |
| | | ResultUtil addWithdrawal(String receivePaymentName, String receivePaymentAccount, Integer withdrawalType, String openBank, BigDecimal withdrawalMoney, Integer uid); |
| | | |
| | | /** |
| | | * 查询提现记录 |
| | | * @param pageNum |
| | | * @param size |
| | | * @param page |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | // List<TWithdrawal> queryList(Integer pageNum, Integer size, Integer uid); |
| | | List<TWithdrawal> queryList(Page<TWithdrawal> page, Integer uid); |
| | | } |