|
@@ -83,9 +83,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<!-- 批量插入 -->
|
|
|
<insert id="insertBatch">
|
|
|
- INSERT INTO price_index (id, name, month, year, unit, creator, `index`, industry, code) VALUES
|
|
|
+ INSERT INTO price_index (id, name, month, year, unit, creator, `indexv`, industry, code) VALUES
|
|
|
<foreach collection="list" item="item" separator=",">
|
|
|
- (#{item.id}, #{item.name}, #{item.month}, #{item.year}, #{item.unit}, #{item.creator}, #{item.index},#{item.industry},#{item.code})
|
|
|
+ (#{item.id}, #{item.name}, #{item.month}, #{item.year}, #{item.unit}, #{item.creator}, #{item.index}, #{item.industry}, #{item.code})
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
+
|
|
|
</mapper>
|