1     <update id="updateProductSerialNo" parameterType="java.util.List">
2         <foreach collection="list" item="it" separator=";" open="begin" close="end;">
3             update ERP_PRODUCT_ID_NAME
4             set SERIAL_NO = #{it.serialNo,jdbcType=DECIMAL}
5             where PRODUCT_ID = #{it.productId,jdbcType=VARCHAR}
6         </foreach>
7     </update>

 

相关文章:

  • 2021-06-04
  • 2021-11-21
  • 2022-12-23
  • 2021-05-21
  • 2022-02-25
猜你喜欢
  • 2022-02-17
  • 2022-12-23
  • 2021-06-29
  • 2021-04-17
  • 2021-08-17
  • 2021-08-01
相关资源
相似解决方案