Browse Source

广告组添加提交订单数

zhaoxian 1 year ago
parent
commit
30ed0f28ee

File diff suppressed because it is too large
+ 806 - 533
job-kuaishou/src/main/java/cn/com/ctop/job/kuaishou/data/entity/KuaishouUnitReportDaily.java


+ 4 - 2
job-kuaishou/src/main/java/cn/com/ctop/job/kuaishou/data/mapper/xml/KuaishouUnitReportDailyMapper.xml

@@ -135,7 +135,8 @@
         `event_measurement_house`,
         `ad_photo_played_2s_ratio`,
         `event_outbound_call_ratio`,
-        `event_ad_watch_times`
+        `event_ad_watch_times`,
+        `event_order_submit`
         )
         values
         <foreach collection="addList" item="add" separator=",">
@@ -272,7 +273,8 @@
             #{add.eventMeasurementHouse},
             #{add.adPhotoPlayed2sRatio},
             #{add.eventOutboundCallRatio},
-            #{add.eventAdWatchTimes}
+            #{add.eventAdWatchTimes},
+            #{add.eventOrderSubmit}
             )
         </foreach>
     </insert>

+ 1 - 0
job-kuaishou/src/main/java/cn/com/ctop/job/kuaishou/data/service/impl/KuaishouUnitReportDailyServiceImpl.java

@@ -202,6 +202,7 @@ public class KuaishouUnitReportDailyServiceImpl extends ServiceImpl<KuaishouUnit
             reportDaily.setAdPhotoPlayed2sRatio(returnJson.getBigDecimal("ad_photo_played_2s_ratio"));
             reportDaily.setEventOutboundCallRatio(returnJson.getBigDecimal("event_outbound_call_ratio"));
             reportDaily.setEventAdWatchTimes(returnJson.getLong("event_ad_watch_times"));
+            reportDaily.setEventOrderSubmit(returnJson.getLong("event_order_submit"));
             addList.add(reportDaily);
         }
         unitReportDailyMapper.replaceBatch(addList);