From 1d53dd8f501a98ddcce8146443b51b357ef5f9b1 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期四, 29 十二月 2022 16:55:46 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/controller/data/StyleController.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 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 cb22c60..1db909f 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.UploadService;
+import com.lf.server.service.all.UploadAttachService;
 import com.lf.server.service.data.StyleService;
 import com.lf.server.service.sys.TokenService;
 import io.swagger.annotations.Api;
@@ -36,9 +36,9 @@
     TokenService tokenService;
 
     @Autowired
-    UploadService uploadService;
+    UploadAttachService uploadAttachService;
 
-    private final static String TAB_NAME = "sys_style";
+    private final static String TAB_NAME = "lf.sys_style";
 
     @SysLog()
     @ApiOperation(value = "鏌ヨ璁板綍鏁�")
@@ -244,7 +244,7 @@
     public ResponseMsg<String> upload(@RequestParam("file") MultipartFile file, HttpServletRequest req) {
         UserEntity ue = tokenService.getCurrentUser(req);
 
-        return uploadService.upload(ue, TAB_NAME, file, this);
+        return uploadAttachService.upload(ue, TAB_NAME, file, this);
     }
 
     @SysLog()
@@ -254,6 +254,6 @@
     })
     @GetMapping(value = "/download")
     public void download(String guid, HttpServletResponse res) {
-        uploadService.download(guid, res);
+        uploadAttachService.download(guid, res);
     }
 }

--
Gitblit v1.9.3