mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2025-03-29 18:12:38 +08:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
{
|
|
"properties" : { },
|
|
"id" : "64ba47c2a11346e1972c63245cbf962c",
|
|
"script" : null,
|
|
"groupId" : "4f0230049d7e4f39b1e0897cc0f46f9a",
|
|
"name" : "修改登录状态",
|
|
"createTime" : null,
|
|
"updateTime" : 1651932570354,
|
|
"lock" : "0",
|
|
"createBy" : null,
|
|
"updateBy" : null,
|
|
"path" : "/change/login/status",
|
|
"method" : "GET",
|
|
"parameters" : [ ],
|
|
"options" : [ {
|
|
"name" : "permission",
|
|
"value" : "user:change:login:status",
|
|
"description" : "允许拥有该权限的访问",
|
|
"required" : false,
|
|
"dataType" : "String",
|
|
"type" : null,
|
|
"defaultValue" : null,
|
|
"validateType" : null,
|
|
"error" : null,
|
|
"expression" : null,
|
|
"children" : null
|
|
} ],
|
|
"requestBody" : "",
|
|
"headers" : [ ],
|
|
"paths" : [ ],
|
|
"responseBody" : null,
|
|
"description" : null,
|
|
"requestBodyDefinition" : null,
|
|
"responseBodyDefinition" : null
|
|
}
|
|
================================
|
|
import cn.dev33.satoken.stp.StpUtil
|
|
|
|
if(isLogin == '1'){
|
|
StpUtil.logout(id);
|
|
}
|
|
return db.table("sys_user").column("isLogin", isLogin).where().eq("id",id).update() |