是否下发查询;

This commit is contained in:
王奎兴
2026-06-04 18:40:32 +08:00
parent 661a17a44e
commit 1e23e60973
2 changed files with 5 additions and 5 deletions
@@ -340,13 +340,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and a.create_time >= #{createTimeStart}
</if>
<if test="createTimeEnd != null and createTimeEnd != ''">
and a.create_time <![CDATA[ < ]]> #{createTimeEnd} + INTERVAL '1' DAY
and a.create_time <![CDATA[ < ]]> DATEADD(DAY, 1, #{createTimeEnd})
</if>
<if test="outboundDateStart != null and outboundDateStart != ''">
and a.outbound_date >= #{outboundDateStart}
</if>
<if test="outboundDateEnd != null and outboundDateEnd != ''">
and a.outbound_date <![CDATA[ < ]]> #{outboundDateEnd} + INTERVAL '1' DAY
and a.outbound_date <![CDATA[ < ]]> DATEADD(DAY, 1, #{outboundDateEnd})
</if>
<if test="organizationId != null ">
and a.organization_id = #{organizationId}