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,30 @@
|
||||
{
|
||||
"properties" : { },
|
||||
"id" : "598efb2903ec4e0491fa99e8df0222f9",
|
||||
"script" : null,
|
||||
"groupId" : "89130d496f6f467c88b22ae4a7f688eb",
|
||||
"name" : "根据角色id删除缓存",
|
||||
"createTime" : null,
|
||||
"updateTime" : 1641218346505,
|
||||
"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 = #{roleId} and user_id is not null
|
||||
""")
|
||||
for(item in userIds){
|
||||
SqlCache.delete(`permissions:${item.userId}`)
|
||||
}
|
||||
Reference in New Issue
Block a user