|
@@ -200,11 +200,11 @@
|
|
|
|
|
|
<insert id="batchInsertGzhDatastatTotal">
|
|
|
insert into content_platform_gzh_datastat_total (date_str, channel, fans_increase_count, first_level_count, score,
|
|
|
- create_timestamp)
|
|
|
+ unit_price, settlement_amount, create_timestamp)
|
|
|
values
|
|
|
<foreach collection="records" item="item" separator=",">
|
|
|
(#{item.dateStr}, #{item.channel}, #{item.fansIncreaseCount}, #{item.firstLevelCount}, #{item.score},
|
|
|
- #{item.createTimestamp})
|
|
|
+ #{item.unitPrice}, #{item.settlementAmount}, #{item.createTimestamp})
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
|
|
@@ -220,11 +220,11 @@
|
|
|
|
|
|
<insert id="batchInsertFwhDatastatTotal">
|
|
|
insert into content_platform_fwh_datastat_total (date_str, channel, fans_increase_count, first_level_count, score,
|
|
|
- create_timestamp)
|
|
|
+ unit_price, settlement_amount, create_timestamp)
|
|
|
values
|
|
|
<foreach collection="records" item="item" separator=",">
|
|
|
(#{item.dateStr}, #{item.channel}, #{item.fansIncreaseCount}, #{item.firstLevelCount}, #{item.score},
|
|
|
- #{item.createTimestamp})
|
|
|
+ #{item.unitPrice}, #{item.settlementAmount}, #{item.createTimestamp})
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
|
|
@@ -237,10 +237,12 @@
|
|
|
</insert>
|
|
|
|
|
|
<insert id="batchInsertQwDatastatTotal">
|
|
|
- insert into content_platform_qw_datastat_total (date_str, channel, first_level_count, score, create_timestamp)
|
|
|
+ insert into content_platform_qw_datastat_total (date_str, channel, first_level_count, score, unit_price,
|
|
|
+ settlement_amount, create_timestamp)
|
|
|
values
|
|
|
<foreach collection="records" item="item" separator=",">
|
|
|
- (#{item.dateStr}, #{item.channel}, #{item.firstLevelCount}, #{item.score}, #{item.createTimestamp})
|
|
|
+ (#{item.dateStr}, #{item.channel}, #{item.firstLevelCount}, #{item.score}, #{item.unitPrice},
|
|
|
+ #{item.settlementAmount}, #{item.createTimestamp})
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
|
|
@@ -254,11 +256,11 @@
|
|
|
|
|
|
<insert id="batchInsertQwDatastatSubChannel">
|
|
|
insert into content_platform_qw_datastat_sub_channel (date_str, sub_channel, first_level_count, score,
|
|
|
- create_account_id, create_timestamp)
|
|
|
+ create_account_id, unit_price, settlement_amount, create_timestamp)
|
|
|
values
|
|
|
<foreach collection="records" item="item" separator=",">
|
|
|
(#{item.dateStr}, #{item.subChannel}, #{item.firstLevelCount}, #{item.score}, #{item.createAccountId},
|
|
|
- #{item.createTimestamp})
|
|
|
+ #{item.unitPrice}, #{item.settlementAmount}, #{item.createTimestamp})
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
|