CmsSubjectProductRelationDao.xml 550 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.yonge.cooleshow.admin.dao.CmsSubjectProductRelationDao">
  4. <insert id="insertList">
  5. insert into cms_subject_product_relation (subject_id, product_id) values
  6. <foreach collection="list" item="item" separator="," index="index">
  7. (#{item.subjectId,jdbcType=BIGINT},
  8. #{item.productId,jdbcType=BIGINT})
  9. </foreach>
  10. </insert>
  11. </mapper>