fix: 菜单管理接口,新增查询参数。

This commit is contained in:
tianyongbao
2026-02-03 22:53:22 +08:00
parent f4d3343e98
commit 7744269106

View File

@@ -44,6 +44,9 @@
<if test="status != null and status != ''">
AND status = #{status}
</if>
<if test="menuType != null and menuType != ''">
AND menu_type = #{menuType}
</if>
</where>
order by parent_id, order_num
</select>
@@ -70,6 +73,9 @@
<if test="status != null and status != ''">
AND m.status = #{status}
</if>
<if test="menuType != null and menuType != ''">
AND m.menu_type = #{menuType}
</if>
order by m.parent_id, m.order_num
</select>