修正菜单状态类型

This commit is contained in:
RuoYi
2018-08-09 22:55:14 +08:00
parent b7c95affc8
commit b0f9dc804a
3 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="menuName != null and menuName != ''">
AND menu_name like concat('%', #{menuName}, '%')
</if>
<if test="visible != null">
<if test="visible != null and visible != ''">
AND visible = #{visible}
</if>
</where>