Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Springboot Plus
Commits
0edd815e
Commit
0edd815e
authored
Apr 09, 2019
by
忙碌蘑菇
Browse files
修复oracle “字符串无效”问题,去掉sql语句中的分号(;)。
parent
f18b83f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
admin-console/src/main/resources/sql/console/org.md
View file @
0edd815e
batchDelByIds
===
update core_org set u.del_flag = 1 where u.id in( #join(ids)#)
;
update core_org set u.del_flag = 1 where u.id in( #join(ids)#)
queryByCondtion
===
...
...
admin-console/src/main/resources/sql/console/role.md
View file @
0edd815e
...
...
@@ -49,19 +49,19 @@ batchDelByIds
*
批量删除角色,同时也参考batchDeleteRoleFunction,batchDeleteRoleMenu等方法删除其他关联数据
delete from core_role where id in( #join(ids)#)
;
delete from core_role where id in( #join(ids)#)
batchDeleteRoleFunction
===
delete from core_role_function where role_id in( #join(ids)#)
;
delete from core_role_function where role_id in( #join(ids)#)
batchDeleteRoleMenu
===
delete from core_role_menu where role_id in( #join(ids)#)
;
delete from core_role_menu where role_id in( #join(ids)#)
batchDeleteUserRole
===
delete from core_user_role where role_id in( #join(ids)#)
;
delete from core_user_role where role_id in( #join(ids)#)
queryAllByDelflag
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment