Commit 0edd815e authored by 忙碌蘑菇's avatar 忙碌蘑菇
Browse files

修复oracle “字符串无效”问题,去掉sql语句中的分号(;)。

parent f18b83f4
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
=== ===
......
...@@ -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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment