Commit 219e3eeb by 徐高华

活码下线通过数量判断

parent 7ebb3795
......@@ -295,9 +295,13 @@
<if test="null != status and 4==status">
and a.chat_status = 4
</if>
<if test="null != hmAddStatus and 0!=hmAddStatus">
and a.hm_add_status = #{hmAddStatus}
<if test="null != hmAddStatus and 1==hmAddStatus">
and a.total_count <![CDATA[ < ]]> 200
</if>
<if test="null != hmAddStatus and 2==hmAddStatus">
and a.total_count >= 200
</if>
<if test="null != searchParams and ''!=searchParams ">
and (a.name like #{searchParams} or a.wx_chat_id like #{wxChatId} )
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment