This commit is contained in:
linfso 2025-01-15 17:49:28 +08:00
parent 2af68a6e1f
commit 32219b4181

View File

@ -599,6 +599,13 @@
and a.send_date <![CDATA[ <= ]]> #{params.endSendDate} and a.send_date <![CDATA[ <= ]]> #{params.endSendDate}
</if> </if>
<if test="params.beginOrderDate != null and params.beginOrderDate != ''">
and a.order_date <![CDATA[ >= ]]> #{params.beginOrderDate}
</if>
<if test="params.endOrderDate != null and params.endOrderDate != ''">
and a.order_date <![CDATA[ <= ]]> #{params.endOrderDate}
</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != ''"> <if test="params.beginCreateTime != null and params.beginCreateTime != ''">
and a.create_time <![CDATA[ >= ]]> #{params.beginCreateTime} and a.create_time <![CDATA[ >= ]]> #{params.beginCreateTime}
</if> </if>