xuhy
2025-01-09 712f70b2936079a131ecb1e63c6d337171618cad
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);
}