提交 865389c8 作者: panda

关键字搜索添加

上级 6b936e34
......@@ -294,6 +294,9 @@
<if test=" date != null ">
and Date(ti.create_time) = #{date}
</if>
<if test="keyword != null and keyword != ''">
and ti.tender_title like CONCAT("%",#{keyword},"%")
</if>
<if test=" userIds != null ">
<foreach collection="userIds" item="id" index="index"
open="and tn.user_account_id in (" close=")" separator=",">
......@@ -312,6 +315,9 @@
<if test=" date != null ">
and Date(ti.create_time) = #{date}
</if>
<if test="keyword != null and keyword != ''">
and ti.tender_title like CONCAT("%",#{keyword},"%")
</if>
<if test=" userIds != null ">
<foreach collection="userIds" item="id" index="index"
open="and tn.user_account_id in (" close=")" separator=",">
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论