This commit is contained in:
linfso 2025-03-02 21:06:59 +08:00
parent 05bb3819c2
commit 4fdbaf4f02

View File

@ -2328,7 +2328,12 @@
AND a.order_status != '0'
AND a.order_status != '2'
AND ( a.problem_type is null or (a.problem_type is not null and (a.problem_type != 173 and a.problem_type != 170 and a.problem_type != 151) ) )
<if test="params.beginDate != null and params.beginDate != ''">
and a.send_date <![CDATA[ >= ]]> #{params.beginDate}
</if>
<if test="params.endDate != null and params.endDate != ''">
and a.send_date <![CDATA[ <= ]]> #{params.endDate}
</if>
ORDER BY a.send_date DESC
LIMIT 1000
</select>