|
@@ -25,7 +25,6 @@
|
|
|
<result column="price_unit" jdbcType="VARCHAR" property="priceUnit"/>
|
|
|
<result column="original_price" jdbcType="DECIMAL" property="originalPrice"/>
|
|
|
<result column="single_rebate" jdbcType="DECIMAL" property="singleRebate"/>
|
|
|
- <result column="single_rebate_unit" jdbcType="VARCHAR" property="singleRebateUnit"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<insert id="insertList">
|
|
@@ -52,8 +51,7 @@
|
|
|
image,
|
|
|
price_unit,
|
|
|
original_price,
|
|
|
- single_rebate,
|
|
|
- single_rebate_unit)
|
|
|
+ single_rebate)
|
|
|
VALUES
|
|
|
<foreach collection="list" index="index" item="item" separator="," >
|
|
|
(#{item.id},
|
|
@@ -78,8 +76,7 @@
|
|
|
#{item.image},
|
|
|
#{item.priceUnit},
|
|
|
#{item.originalPrice},
|
|
|
- #{item.singleRebate},
|
|
|
- #{item.singleRebateUnit})
|
|
|
+ #{item.singleRebate})
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
|