111
Jinquan_Ou
2023-04-08 1836f7863882ceae0e5c246556196be48bd12384
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);
}