|
@@ -125,7 +125,7 @@
|
|
|
left join sys_user_role ur on rm.role_id = ur.role_id
|
|
|
left join sys_role r on r.role_id = ur.role_id
|
|
|
where m.status = '1'
|
|
|
- and r.status = '0'
|
|
|
+ and r.status = '1'
|
|
|
and ur.user_id = #{userId}
|
|
|
</select>
|
|
|
|
|
@@ -150,6 +150,12 @@
|
|
|
<include refid="selectMenuVo"/>
|
|
|
where menu_name=#{menuName} and parent_id = #{parentId} limit 1
|
|
|
</select>
|
|
|
+ <select id="selectMenu" parameterType="Long" resultType="Long">
|
|
|
+ select distinct m.menu_id from sys_menu m
|
|
|
+ join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
+ join sys_role ro on rm.role_id = ro.role_id
|
|
|
+ where ro.role_id=#{roleId}
|
|
|
+ </select>
|
|
|
|
|
|
<update id="updateMenu" parameterType="SysMenu">
|
|
|
update sys_menu
|