feige
2024-06-16 3ad8fb4e7cc1391e8090f3da6ffa9c48690a12a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.service;
 
import com.ruoyi.common.core.domain.AjaxResult;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * @Version 1.0
 * @Author Jin_quan Ou
 * @Date 2023-03-19 17:32
 */
public interface DownLoadFileService {
    void downLoadFile(String path, HttpServletResponse response);
}