mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2026-04-26 00:00:04 +08:00
删除quarz
This commit is contained in:
@@ -1,51 +0,0 @@
|
||||
{
|
||||
"properties" : { },
|
||||
"id" : "f9a5956afdfd4492966b1a3c04dbadf6",
|
||||
"script" : null,
|
||||
"groupId" : "89130d496f6f467c88b22ae4a7f688eb",
|
||||
"name" : "保存",
|
||||
"createTime" : null,
|
||||
"updateTime" : 1642326331841,
|
||||
"lock" : "0",
|
||||
"method" : "POST",
|
||||
"path" : "/save",
|
||||
"parameters" : [ ],
|
||||
"option" : "[{\"name\":\"\",\"value\":\"\",\"description\":\"\"}]",
|
||||
"requestBody" : "",
|
||||
"headers" : [ ],
|
||||
"paths" : [ ],
|
||||
"responseBody" : null,
|
||||
"description" : null,
|
||||
"requestBodyDefinition" : null,
|
||||
"responseBodyDefinition" : null,
|
||||
"optionMap" : {
|
||||
"" : ""
|
||||
}
|
||||
}
|
||||
================================
|
||||
import '@get:/role/cache/delete' as cacheDelete
|
||||
|
||||
var role = {
|
||||
code,
|
||||
permission,
|
||||
descRibe,
|
||||
type,
|
||||
name,
|
||||
sort,
|
||||
id
|
||||
}
|
||||
if(id){
|
||||
var roleId = id
|
||||
cacheDelete()
|
||||
db.table("sys_role_menu").where().eq("role_id",id).delete()
|
||||
}
|
||||
id = db.table("sys_role").primary("id").saveOrUpdate(role);
|
||||
for(menuId in menus.split(',')){
|
||||
db.table("sys_role_menu").column("menu_id",menuId).column("role_id", id).insert();
|
||||
}
|
||||
db.table("sys_role_office").where().eq("role_id",id).delete()
|
||||
if(offices && permission == 1){
|
||||
for(officeId in offices.split(',')){
|
||||
db.table("sys_role_office").column("office_id",officeId).column("role_id", id).insert();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user