管道基础大数据平台系统开发-【后端】-Server
13693261870
2022-10-20 41e661c57a6011a25c3aaf6647d20a03df7c17a3
src/main/java/com/lf/server/controller/data/StyleController.java
@@ -253,7 +253,7 @@
            @ApiImplicitParam(name = "guid", value = "附件Guid", dataType = "String", paramType = "body")
    })
    @GetMapping(value = "/download")
    public void download(String guid, HttpServletRequest req, HttpServletResponse res) {
        uploaderService.download(guid, req, res, this);
    public void download(String guid, HttpServletResponse res) {
        uploaderService.download(guid, res);
    }
}