From 4ddfd502023662f6d25c4be416d88751e206d91a Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期二, 25 十月 2022 09:45:30 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/controller/sys/RoleMenuAuthController.java |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/lf/server/controller/sys/RoleMenuAuthController.java b/src/main/java/com/lf/server/controller/sys/RoleMenuAuthController.java
index b81321f..d284999 100644
--- a/src/main/java/com/lf/server/controller/sys/RoleMenuAuthController.java
+++ b/src/main/java/com/lf/server/controller/sys/RoleMenuAuthController.java
@@ -5,6 +5,7 @@
 import com.lf.server.entity.all.ResponseMsg;
 import com.lf.server.entity.sys.RoleMenuAuthEntity;
 import com.lf.server.entity.sys.UserEntity;
+import com.lf.server.service.all.PermsService;
 import com.lf.server.service.sys.RoleMenuAuthService;
 import com.lf.server.service.sys.TokenService;
 import io.swagger.annotations.Api;
@@ -30,6 +31,9 @@
 
     @Autowired
     TokenService tokenService;
+
+    @Autowired
+    PermsService permsService;
 
     @SysLog()
     @ApiOperation(value = "鏌ヨ璁板綍鏁�")
@@ -165,6 +169,9 @@
             }
 
             int count = roleMenuAuthService.insert(entity);
+            if (count > 0) {
+                permsService.clearPermsCache();
+            }
 
             return success(count);
         } catch (Exception ex) {
@@ -188,6 +195,9 @@
             }
 
             int count = roleMenuAuthService.inserts(list);
+            if (count > 0) {
+                permsService.clearPermsCache();
+            }
 
             return success(count);
         } catch (Exception ex) {
@@ -204,6 +214,9 @@
     public ResponseMsg<Integer> delete(int id) {
         try {
             int count = roleMenuAuthService.delete(id);
+            if (count > 0) {
+                permsService.clearPermsCache();
+            }
 
             return success(count);
         } catch (Exception ex) {
@@ -224,6 +237,9 @@
             }
 
             int count = roleMenuAuthService.deletes(ids);
+            if (count > 0) {
+                permsService.clearPermsCache();
+            }
 
             return success(count);
         } catch (Exception ex) {
@@ -246,6 +262,9 @@
             }
 
             int count = roleMenuAuthService.update(entity);
+            if (count > 0) {
+                permsService.clearPermsCache();
+            }
 
             return success(count);
         } catch (Exception ex) {
@@ -270,6 +289,9 @@
             }
 
             int count = roleMenuAuthService.updates(list);
+            if (count > 0) {
+                permsService.clearPermsCache();
+            }
 
             return success(count);
         } catch (Exception ex) {

--
Gitblit v1.9.3