From dc59d63cfa8cac113c4834e6b7d90c0af61df31f Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 27 十月 2022 20:38:20 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/controller/data/StyleController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/lf/server/controller/data/StyleController.java b/src/main/java/com/lf/server/controller/data/StyleController.java index 28a4853..0cb30b5 100644 --- a/src/main/java/com/lf/server/controller/data/StyleController.java +++ b/src/main/java/com/lf/server/controller/data/StyleController.java @@ -5,7 +5,7 @@ import com.lf.server.entity.all.ResponseMsg; import com.lf.server.entity.data.StyleEntity; import com.lf.server.entity.sys.UserEntity; -import com.lf.server.service.all.FileService; +import com.lf.server.service.all.UploadService; import com.lf.server.service.data.StyleService; import com.lf.server.service.sys.TokenService; import io.swagger.annotations.Api; @@ -27,7 +27,7 @@ */ @Api(tags = "鏁版嵁绠$悊\\鏍峰紡绠$悊") @RestController -@RequestMapping("/Style") +@RequestMapping("/style") public class StyleController extends BaseController { @Autowired StyleService styleService; @@ -36,7 +36,7 @@ TokenService tokenService; @Autowired - FileService fileService; + UploadService uploadService; private final static String TAB_NAME = "sys_style"; @@ -244,7 +244,7 @@ public ResponseMsg<String> upload(@RequestParam("file") MultipartFile file, HttpServletRequest req) { UserEntity ue = tokenService.getCurrentUser(req); - return fileService.upload(ue, TAB_NAME, file, this); + return uploadService.upload(ue, TAB_NAME, file, this); } @SysLog() @@ -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) { - fileService.download(guid, req, res, this); + public void download(String guid, HttpServletResponse res) { + uploadService.download(guid, res); } } -- Gitblit v1.9.3