1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| package com.ruoyi.user.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.user.entity.Withdraw;
| import com.ruoyi.user.vo.WithdrawListVO;
|
| /**
| * <p>
| * 用户提现申请记录表 服务类
| * </p>
| *
| * @author hjl
| * @since 2024-06-07
| */
| public interface WithdrawService extends IService<Withdraw> {
|
| /**
| * 提现列表
| *
| * @param userid 用户id
| * @return 提现列表
| */
| WithdrawListVO withdrawList(Integer userid);
|
| /**
| * 确认提现
| *
| * @param userid 用户id
| * @param orderId 订单id
| * @return 操作结果
| */
| Boolean confirmWithdraw(Integer orderId, Integer userid);
| }
|
|