|
|
|
@@ -105,11 +105,11 @@ |
|
|
|
</select> |
|
|
|
|
|
|
|
<insert id="insertCouponPasswds" parameterType="java.util.List"> |
|
|
|
INSERT INTO wx_coupon_password (`id`,`coupon_id`,`coupon_short`,`password`,`status`,`create_date`,`update_date`) |
|
|
|
INSERT INTO wx_coupon_password (`id`,`tenant_id`,`parent_tenant_id`,`coupon_id`,`coupon_short`,`password`,`status`,`create_date`,`update_date`) |
|
|
|
VALUES |
|
|
|
<foreach collection="list" item="item" index="index" separator=","> |
|
|
|
( |
|
|
|
#{item.id},#{item.couponId},#{item.couponShort},#{item.password},#{item.status}, |
|
|
|
#{item.id},#{item.tenantId},#{item.parentTenantId},#{item.couponId},#{item.couponShort},#{item.password},#{item.status}, |
|
|
|
#{item.createDate},#{item.updateDate} |
|
|
|
) |
|
|
|
</foreach> |
|
|
|
|