mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2026-04-26 00:00:04 +08:00
个人中心,data挪目录
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"properties" : { },
|
||||
"id" : "96336e6177d143c1a2259685f71cd615",
|
||||
"script" : null,
|
||||
"groupId" : "67b2ce258e24491194b74992958c74aa",
|
||||
"name" : "根据菜单id清除缓存",
|
||||
"createTime" : null,
|
||||
"updateTime" : 1641218495832,
|
||||
"lock" : "0",
|
||||
"method" : "GET",
|
||||
"path" : "/cache/delete",
|
||||
"parameters" : [ ],
|
||||
"option" : "[]",
|
||||
"requestBody" : "",
|
||||
"headers" : [ ],
|
||||
"paths" : [ ],
|
||||
"responseBody" : null,
|
||||
"description" : null,
|
||||
"requestBodyDefinition" : null,
|
||||
"responseBodyDefinition" : null,
|
||||
"optionMap" : { }
|
||||
}
|
||||
================================
|
||||
import org.ssssssss.magicapi.cache.SqlCache
|
||||
var userIds = db.select("""
|
||||
select user_id from sys_user_role where role_id in (
|
||||
select role_id from sys_role_menu where menu_id = #{menuId}
|
||||
) and user_id is not null
|
||||
""")
|
||||
for(item in userIds){
|
||||
SqlCache.delete(`permissions:${item.userId}`)
|
||||
}
|
||||
Reference in New Issue
Block a user