| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
| | | <mapper namespace="com.ruoyi.basic.mapper.StandardProductListSupplierAskMapper"> |
| | | |
| | | <insert id="batchInsertSupplierAsk"> |
| | | INSERT INTO standard_product_list_supplier_ask ( |
| | | supplier_ask_id, |
| | | product_list_id, |
| | | supplier_name, |
| | | ask, |
| | | tell, |
| | | create_user, |
| | | update_user, |
| | | create_time, |
| | | update_time |
| | | )values |
| | | <foreach collection="list" item="item" separator=","> |
| | | ( |
| | | #{item.supplierAskId}, |
| | | #{item.productListId}, |
| | | #{item.supplierName}, |
| | | #{item.ask}, |
| | | #{item.tell}, |
| | | #{item.createUser}, |
| | | #{item.updateUser}, |
| | | #{item.createTime}, |
| | | #{item.updateTime} |
| | | ) |
| | | </foreach> |
| | | </insert> |
| | | </mapper> |