This commit is contained in:
mashuai 2025-08-05 21:18:28 +08:00
parent c1710f52b8
commit a364f573a9
2 changed files with 4 additions and 4 deletions

View File

@ -350,7 +350,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</if>
WHERE
tk.task_type = #{taskType}
AND tk.create_time &lt; '2025-07-19 00:00:00'
AND tk.create_time &lt; '2025-08-06 00:00:00'
<if test="backUnit != null and backUnit != ''">
AND bui.unit_id = #{backUnit}
</if>
@ -411,7 +411,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</if>
WHERE
tk.task_type = #{taskType}
AND tk.create_time &gt;= '2025-07-19 00:00:00'
AND tk.create_time &gt;= '2025-08-06 00:00:00'
<if test="backUnit != null and backUnit != ''">
AND bui.unit_id = #{backUnit}
</if>

View File

@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
JOIN ma_type_repair mtr ON mtr.type_id = rd.type_id AND mtr.user_id = #{userId}
</if>
<where>
rd.create_time &lt; '2025-07-19 00:00:00'
rd.create_time &lt; '2025-08-06 00:00:00'
<if test="inputCode != null and inputCode != ''">
AND tt.CODE = #{inputCode}
</if>
@ -123,7 +123,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
JOIN ma_type_keeper mtr ON mtr.type_id = rd.type_id AND mtr.user_id = #{userId}
</if>
<where>
rd.create_time &gt;= '2025-07-19 00:00:00'
rd.create_time &gt;= '2025-08-06 00:00:00'
<if test="inputCode != null and inputCode != ''">
AND tt.CODE = #{inputCode}
</if>