update 修改站点运营商时将此站点下所有桩的运营商也进行修改

This commit is contained in:
Lemon
2023-07-04 16:38:45 +08:00
parent 3ea5589592
commit 196f412473
5 changed files with 44 additions and 1 deletions

View File

@@ -396,4 +396,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{item,jdbcType=VARCHAR}
</foreach>
</select>
<update id="updatePileMerchantBatch">
update
pile_basic_info
set
merchant_id = #{newMerchantId,jdbcType=VARCHAR}
where
merchant_id = #{oldMerchantId,jdbcType=VARCHAR}
</update>
</mapper>