| 123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.sckw.order.dao.KwpWantBuyTradingMapper">
- <insert id="insertBatch">
- insert into kwo_want_buy_trading
- <trim prefix="(" suffix=")" suffixOverrides=",">
- id,
- want_buy_id,
- trading,
- remark,
- status,
- create_by,
- create_time,
- update_by,
- update_time,
- del_flag
- </trim>
- values
- <foreach collection="list" item="item" separator=",">
- <trim prefix="(" suffix=")" suffixOverrides=",">
- #{item.id,jdbcType=BIGINT},
- #{item.wantBuyId,jdbcType=BIGINT},
- #{item.trading,jdbcType=VARCHAR},
- #{item.remark,jdbcType=VARCHAR},
- #{item.status,jdbcType=VARCHAR},
- #{item.createBy,jdbcType=VARCHAR},
- #{item.createTime,jdbcType=VARCHAR},
- #{item.updateBy,jdbcType=VARCHAR},
- #{item.updateTime,jdbcType=VARCHAR},
- #{item.delFlag,jdbcType=VARCHAR}
- </trim>
- </foreach>
- </insert>
- </mapper>
|