| | |
| | | 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 |