新增 批量推送第三方平台订单接口

This commit is contained in:
Lemon
2025-07-04 13:55:17 +08:00
parent bc4c59360e
commit 9b966b43ae
7 changed files with 184 additions and 0 deletions

View File

@@ -3291,4 +3291,15 @@
LIMIT 1;
</select>
<select id="getOrderBasicInfoByTimeInterval" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from order_basic_info
where del_flag = '0'
and station_id in
<foreach collection="stationIds" item="stationId" open="(" separator="," close=")">
#{stationId,jdbcType=VARCHAR}
</foreach>
and create_time between #{startTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
</select>
</mapper>