mybatis mapping 模糊查询写法:
<if test="planName != null and planName != ''">
and plan_name like concat(concat('%',#{planName}),'%')
</if>
mybatis mapping 模糊查询写法:
<if test="planName != null and planName != ''">
and plan_name like concat(concat('%',#{planName}),'%')
</if>