Pu Zhibing
2025-06-06 e34a5ddfe3406f7dd37c41d166c2aed97a11353f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.stylefeng.guns.modular.account.server;
 
import com.baomidou.mybatisplus.service.IService;
import com.stylefeng.guns.modular.account.model.ElectronicLedger;
import com.stylefeng.guns.modular.cloudPayment.req.AllocationReq;
import com.stylefeng.guns.modular.cloudPayment.req.WithdrawalReq;
import com.stylefeng.guns.modular.system.model.UserWithdrawal;
 
public interface UserWithdrawalService extends IService<UserWithdrawal> {
    AllocationReq createAllocationReq(String balanceAcctId, String balanceAcctId1, Integer amount,String password);
 
    WithdrawalReq createWithdrawalReq(String balanceAcctId, Integer amount, String password, String code);
 
    /**
     * 用户提现
     * @param amount
     * @param bankAcctNo
     * @param password
     * @return
     */
    Boolean withdrawDeposit(Integer amount, String bankAcctNo, String password);
}