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
f94da76b
Commit
f94da76b
authored
Apr 09, 2019
by
忙碌的小蘑菇
Committed by
闲.大赋
Apr 09, 2019
Browse files
!30 修复oracle “无效字符”问题,去掉sql语句中的分号(;)。
Merge pull request !30 from 忙碌的小蘑菇/master
parents
f18b83f4
0edd815e
Changes
2
Hide whitespace changes
Inline
Side-by-side
admin-console/src/main/resources/sql/console/org.md
View file @
f94da76b
batchDelByIds
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
queryByCondtion
===
===
...
...
admin-console/src/main/resources/sql/console/role.md
View file @
f94da76b
...
@@ -49,19 +49,19 @@ batchDelByIds
...
@@ -49,19 +49,19 @@ batchDelByIds
*
批量删除角色,同时也参考batchDeleteRoleFunction,batchDeleteRoleMenu等方法删除其他关联数据
*
批量删除角色,同时也参考batchDeleteRoleFunction,batchDeleteRoleMenu等方法删除其他关联数据
delete from core_role where id in( #join(ids)#)
;
delete from core_role where id in( #join(ids)#)
batchDeleteRoleFunction
batchDeleteRoleFunction
===
===
delete from core_role_function where role_id in( #join(ids)#)
;
delete from core_role_function where role_id in( #join(ids)#)
batchDeleteRoleMenu
batchDeleteRoleMenu
===
===
delete from core_role_menu where role_id in( #join(ids)#)
;
delete from core_role_menu where role_id in( #join(ids)#)
batchDeleteUserRole
batchDeleteUserRole
===
===
delete from core_user_role where role_id in( #join(ids)#)
;
delete from core_user_role where role_id in( #join(ids)#)
queryAllByDelflag
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