fix(系统管理): 授权插件菜单的操作在记录日志时无法获取到菜单名称

This commit is contained in:
fit2cloud-chenyw 2022-07-03 23:07:48 -04:00
parent 9b05a22840
commit b73a8d477f

View File

@ -155,7 +155,11 @@
<if test="type == 11">
menu_id as id ,title as name
from sys_menu
from (
select menu_id, title from sys_menu
union all
select menu_id, title from plugin_sys_menu
) plugin_union
<where>
menu_id in
<foreach collection="ids" item="id" index="index" open="(" separator="," close=")">