@@ -28,6 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="type != null and type != ''"> and type = #{type}</if>
<if test="size != null and size != ''"> and size <= #{size}</if>
+ <if test="isPublic != null"> and is_public = #{isPublic}</if>
</where>
</select>