SmsCouponProductRelationDao.xml 535 B

1234567891011
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.macro.mall.dao.SmsCouponProductRelationDao">
  4. <insert id="insertList">
  5. INSERT INTO sms_coupon_product_relation (product_id,coupon_id) VALUES
  6. <foreach collection="list" item="item" index="index" separator=",">
  7. (#{item.productId,jdbcType=BIGINT},
  8. #{item.couponId,jdbcType=INTEGER})
  9. </foreach>
  10. </insert>
  11. </mapper>