|
|
@@ -1039,10 +1039,10 @@
|
|
|
and audit_status = #{auditStatus,jdbcType=INTEGER}
|
|
|
</if>
|
|
|
<if test="name != null">
|
|
|
- and name = #{name,jdbcType=VARCHAR}
|
|
|
+ and name like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
|
|
|
</if>
|
|
|
<if test="keyword != null">
|
|
|
- and keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
|
|
|
+ and keyword like CONCAT('%',#{keyword,jdbcType=VARCHAR},'%')
|
|
|
</if>
|
|
|
<if test="category != null">
|
|
|
and category = #{category,jdbcType=INTEGER}
|
|
|
@@ -1081,10 +1081,10 @@
|
|
|
and audit_status = #{auditStatus,jdbcType=INTEGER}
|
|
|
</if>
|
|
|
<if test="name != null">
|
|
|
- and name = #{name,jdbcType=VARCHAR}
|
|
|
+ and name like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
|
|
|
</if>
|
|
|
<if test="keyword != null">
|
|
|
- and keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
|
|
|
+ and keyword like CONCAT('%',#{keyword,jdbcType=VARCHAR},'%')
|
|
|
</if>
|
|
|
<if test="category != null">
|
|
|
and category = #{category,jdbcType=INTEGER}
|