From ae3ca6829a5bae6088b6f6a005377f11fee03df8 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 31 十月 2022 17:17:37 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/controller/sys/ResController.java | 31 ++++++++++++++++++++++++++----- 1 files changed, 26 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/lf/server/controller/sys/ResController.java b/src/main/java/com/lf/server/controller/sys/ResController.java index 34777db..acafac1 100644 --- a/src/main/java/com/lf/server/controller/sys/ResController.java +++ b/src/main/java/com/lf/server/controller/sys/ResController.java @@ -5,7 +5,8 @@ import com.lf.server.entity.all.ResponseMsg; import com.lf.server.entity.sys.ResEntity; import com.lf.server.entity.sys.UserEntity; -import com.lf.server.service.all.FileService; +import com.lf.server.service.all.PermsService; +import com.lf.server.service.all.UploadService; import com.lf.server.service.sys.ResService; import com.lf.server.service.sys.TokenService; import io.swagger.annotations.Api; @@ -36,7 +37,10 @@ TokenService tokenService; @Autowired - FileService fileService; + UploadService uploadService; + + @Autowired + PermsService permsService; private final static String TAB_NAME = "sys_res"; @@ -144,6 +148,9 @@ } int count = resService.insertRes(entity); + if (count > 0) { + permsService.clearResCache(); + } return success(count); } catch (Exception ex) { @@ -167,6 +174,9 @@ } int count = resService.insertRess(list); + if (count > 0) { + permsService.clearResCache(); + } return success(count); } catch (Exception ex) { @@ -183,6 +193,9 @@ public ResponseMsg<Integer> deleteRes(int id) { try { int count = resService.deleteRes(id); + if (count > 0) { + permsService.clearResCache(); + } return success(count); } catch (Exception ex) { @@ -201,7 +214,12 @@ if (ids == null || ids.isEmpty()) { return fail("id鏁扮粍涓嶈兘涓虹┖", -1); } + int count = resService.deleteRess(ids); + if (count > 0) { + permsService.clearResCache(); + } + return success(count); } catch (Exception ex) { return fail(ex.getMessage(), -1); @@ -223,6 +241,9 @@ } int count = resService.updateRes(entity); + if (count > 0) { + permsService.clearResCache(); + } return success(count); } catch (Exception ex) { @@ -266,7 +287,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() @@ -275,7 +296,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