| | |
| | | package com.ruoyi.user.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.user.entity.Withdraw; |
| | | import com.ruoyi.user.vo.WithdrawListVO; |
| | | |
| | | /** |
| | |
| | | * @author hjl |
| | | * @since 2024-06-07 |
| | | */ |
| | | public interface WithdrawService extends IService<Withdraw> { |
| | | public interface WithdrawService { |
| | | |
| | | /** |
| | | * 提现列表 |
| | | * |
| | | * @param userid 用户id |
| | | * @param userid 用户id |
| | | * @param pageNum 页码 |
| | | * @param pageSize 条数 |
| | | * @return 提现列表 |
| | | */ |
| | | WithdrawListVO withdrawList(Integer userid); |
| | | WithdrawListVO withdrawList(Integer userid, Integer pageNum, Integer pageSize); |
| | | |
| | | /** |
| | | * 确认提现 |
| | |
| | | * @param orderId 订单id |
| | | * @return 操作结果 |
| | | */ |
| | | Boolean confirmWithdraw(Integer orderId, Integer userid); |
| | | Boolean confirmWithdraw(String orderId, Integer userid); |
| | | } |