This commit is contained in:
van
2026-04-03 17:18:27 +08:00
parent d4fdf076e9
commit fa7e26cf6e
6 changed files with 85 additions and 10 deletions

View File

@@ -69,4 +69,13 @@
</where>
order by id desc
</select>
<select id="selectJobsNeedingQueueReconcile" resultMap="WeComShareLinkLogisticsJobResult">
<include refid="selectVo"/>
where status in ('PENDING', 'WAITING', 'IMPORTED')
and tracking_url is not null and trim(tracking_url) != ''
and create_time >= date_sub(now(), interval 1 month)
order by id asc
limit #{limit}
</select>
</mapper>