Commit 205d6ea3 by 陶光胜

二维码

parent c7a4be11
......@@ -248,10 +248,10 @@
and push_status = #{pushStatus}
</if>
<if test="startTime != null">
and (update_time &gt;= #{startTime} or push_time &gt;= #{startTime})
and (DATE_FORMAT(update_time,'%Y-%m-%d') &gt;= #{startTime} or DATE_FORMAT(push_time,'%Y-%m-%d') &gt;= #{startTime})
</if>
<if test="endTime != null">
and (update_time &lt;= #{endTime} or push_time &lt;= #{endTime})
and (DATE_FORMAT(update_time,'%Y-%m-%d') &lt;= #{endTime} or DATE_FORMAT(push_time,'%Y-%m-%d') &lt;= #{endTime})
</if>
<if test="pushClassifyId != null">
and push_classify_id = #{pushClassifyId}
......
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