no message
This commit is contained in:
parent
5d5f67ef07
commit
4c801f007a
|
|
@ -167,6 +167,14 @@
|
||||||
AND (goods_name like concat('%', #{goodsName}, '%')
|
AND (goods_name like concat('%', #{goodsName}, '%')
|
||||||
OR g.goods_desc LIKE concat('%', #{goodsName}, '%'))
|
OR g.goods_desc LIKE concat('%', #{goodsName}, '%'))
|
||||||
</if>
|
</if>
|
||||||
|
<if test="keyword != null and keyword != ''">
|
||||||
|
AND (
|
||||||
|
g.goods_name like concat('%', #{keyword}, '%')
|
||||||
|
OR g.goods_desc LIKE concat('%', #{keyword}, '%')
|
||||||
|
OR sa.area_name LIKE concat('%', #{keyword}, '%')
|
||||||
|
OR sa.merger_name LIKE concat('%', #{keyword}, '%')
|
||||||
|
)
|
||||||
|
</if>
|
||||||
<if test="status != null">
|
<if test="status != null">
|
||||||
AND status = #{status}
|
AND status = #{status}
|
||||||
</if>
|
</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue