2025-03-24 19:07:18 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
|
<!DOCTYPE mapper
|
|
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
|
<mapper namespace="org.asinkj.amz.mapper.BizLogisticsOrderDetailMapper">
|
|
|
|
|
|
2025-04-08 18:55:30 +08:00
|
|
|
<update id="updateByBoxId" parameterType="java.util.List">
|
|
|
|
|
<foreach collection="list" item="item" index="index" separator=";">
|
|
|
|
|
UPDATE biz_logistics_order_detail
|
|
|
|
|
<set>
|
|
|
|
|
<if test="item.logisticsStatus != null">
|
|
|
|
|
logistics_status = #{item.logisticsStatus},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="item.logisticsProviderName != null and item.logisticsProviderName != ''">
|
|
|
|
|
logistics_provider_name = #{item.logisticsProviderName},
|
|
|
|
|
</if>
|
2025-05-10 14:29:20 +08:00
|
|
|
<if test="item.trackingNumber != null and item.trackingNumber != ''">
|
|
|
|
|
tracking_number = #{item.trackingNumber},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="item.logisticsWeight != null and item.logisticsWeight != ''">
|
|
|
|
|
logistics_weight = #{item.logisticsWeight},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="item.actualDeliveryDate != null and item.actualDeliveryDate != ''">
|
|
|
|
|
actual_delivery_date = #{item.actualDeliveryDate},
|
|
|
|
|
</if>
|
2025-04-08 18:55:30 +08:00
|
|
|
</set>
|
|
|
|
|
WHERE fba_box_number = #{item.fbaBoxNumber}
|
|
|
|
|
</foreach>
|
|
|
|
|
</update>
|
2025-03-24 19:07:18 +08:00
|
|
|
</mapper>
|