hjl
2024-07-16 ec6d43aa07ee0e8faf34498057ebcfbb446aa015
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
package com.ruoyi.admin.service;
 
import com.ruoyi.common.core.domain.R;
 
import javax.servlet.http.HttpServletResponse;
import java.util.List;
 
/**
 * <p>
 * 用户提现记录表 服务类
 * </p>
 *
 * @author hjl
 * @since 2024-05-29
 */
public interface WithdrawService {
 
    /**
     * excel模板导出
     *
     * @param data     提现记录
     * @param response 响应体
     * @return 导出结果
     */
    R<String> excelExport(List<com.ruoyi.order.api.entity.UserWithdrawRecordVO> data, HttpServletResponse response);
 
}