管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-03-03 160beba2bb2044f52956552e9cd8716ef4e0093b
1
已修改2个文件
4 ■■■■ 文件已修改
src/main/java/com/lf/server/helper/WebHelper.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/lf/server/service/all/UploadAttachService.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/lf/server/helper/WebHelper.java
@@ -308,7 +308,7 @@
     * 下载文件
     */
    public static void download(String file, String fileName, HttpServletResponse res) throws Exception {
        download(file, fileName, res);
        download(file, fileName, false, res);
    }
    /**
src/main/java/com/lf/server/service/all/UploadAttachService.java
@@ -139,7 +139,7 @@
     * 下载文件
     */
    public void download(String guid, HttpServletResponse res) {
        download(guid, res);
        download(guid, false, res);
    }
    /**