根据用户ID查询菜单补充别名
This commit is contained in:
parent
c3d6302c8f
commit
456b9530e1
@ -64,10 +64,10 @@
|
|||||||
AND m.menu_name like concat(concat('%', #{menuName}), '%')
|
AND m.menu_name like concat(concat('%', #{menuName}), '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="visible != null and visible != ''">
|
<if test="visible != null and visible != ''">
|
||||||
AND visible = #{visible}
|
AND m.visible = #{visible}
|
||||||
</if>
|
</if>
|
||||||
<if test="status != null and status != ''">
|
<if test="status != null and status != ''">
|
||||||
AND status = #{status}
|
AND m.status = #{status}
|
||||||
</if>
|
</if>
|
||||||
order by m.parent_id, m.order_num
|
order by m.parent_id, m.order_num
|
||||||
</select>
|
</select>
|
||||||
|
Loading…
Reference in New Issue
Block a user