edit | blame | history | raw

deleteRoleFunction

  • 删除所有的功能的角色配置

    delete from core_role_function where function_id in ( #join(ids)# )

getFunctionIdByRole

select  id from core_role_menu where role_id=#roleId#

getFunctionByRoleMenu

select  menu_id from core_role_menu where role_id=#roleId#

getQueryFunctionAndRoleData

  • 获得所有查询功能,并查询角色对应的功能信息。

    select f.*,r.data_access_type from core_role_function r left join core_function f on r.function_id=f.id where r.role_id=#roleId# and f.type='FN1'