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
| package com.ruoyi.order.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.order.entity.WithdrawDetail;
| import com.ruoyi.order.entity.WithdrawRecord;
|
| /**
| * <p>
| * 用户提现申请记录表 服务类
| * </p>
| *
| * @author hjl
| * @since 2024-07-09
| */
| public interface WithdrawRecordService extends IService<WithdrawRecord> {
|
| /**
| * 保存提现申请记录
| *
| * @param withdrawId
| * @param orderId
| * @param userId
| * @param withdrawType
| * @param auditStatus
| */
| void saveWithdrawRecord(String withdrawId, String orderId, Integer userId, Integer withdrawType, Integer auditStatus);
|
| }
|
|