This commit is contained in:
577732344@qq.com
2025-09-26 16:14:17 +08:00
parent b0f78c0eb6
commit 50ed24fa65
6 changed files with 62 additions and 26 deletions

View File

@@ -81,7 +81,7 @@
left join sys_user_role ur on rm.role_id = ur.role_id
left join sys_role ro on ur.role_id = ro.role_id
left join sys_user u on ur.user_id = u.user_id
where u.user_id = #{userId} and m.menu_type in ('M', 'C') and m.status = 0 AND ro.status = 0
where u.user_id = #{userId} and m.menu_type in ('M', 'C') and m.status = 0 AND ro.status = '0'
order by m.parent_id, m.order_num
</select>