新增 修改站点运营商时,将订单列表中的运营商id也进行修改

This commit is contained in:
Lemon
2023-09-06 14:55:14 +08:00
parent e1fa596818
commit cae981e390
5 changed files with 41 additions and 0 deletions

View File

@@ -1156,4 +1156,13 @@
</foreach>
</if>
</select>
<update id="updateMerchantByStationId">
update
order_basic_info
set
merchant_id = #{newMerchantId,jdbcType=VARCHAR}
where
station_id = #{stationId,jdbcType=BIGINT}
</update>
</mapper>