| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.stylefeng.guns.modular.cloudPayment.req.WithdrawalReq; |
| | | import com.stylefeng.guns.modular.system.model.TBank; |
| | | import com.stylefeng.guns.modular.system.model.TPubWithdrawal; |
| | | import com.stylefeng.guns.modular.system.model.UserWithdrawal; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface IUserWithdrawalService extends IService<UserWithdrawal> { |
| | | |
| | | WithdrawalReq createInfo(UserWithdrawal userWithdrawal, TPubWithdrawal tPubWithdrawal); |
| | | |
| | | |
| | | |