feat(oms): 运输业务单列表新增预计起运时间范围查询条件(layDateStart/layDateEnd)

This commit is contained in:
rcx
2026-09-02 16:16:46 +08:00
parent 3576d734af
commit 572b25ee88
3 changed files with 26 additions and 0 deletions
@@ -700,6 +700,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="pushTimeEnd != null">
and bdo.PUSH_TIME <![CDATA[<=]]> #{pushTimeEnd} + 1 - 1/86400
</if>
<if test="layDateStart != null">
and bdo.LAY_DATE <![CDATA[>=]]> #{layDateStart}
</if>
<if test="layDateEnd != null">
and bdo.LAY_DATE <![CDATA[<=]]> #{layDateEnd} + 1 - 1/86400
</if>
<if test="ieType != null ">
and bdo.IE_TYPE = #{ieType}
</if>