|
@@ -19,6 +19,11 @@ public class BytedanceEtlVideoJob {
|
|
|
@Autowired
|
|
|
private IEtlBytedanceReportVideoDailyService etlBytedanceReportVideoDailyService;
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 头条爆款视频数据清洗
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
@XxlJob("bytedanceEtlVideoJob")
|
|
|
public void execute() throws Exception {
|
|
|
Date startDate = DateUtils.addDay(new Date(),-2);
|
|
@@ -28,6 +33,7 @@ public class BytedanceEtlVideoJob {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ //TODO 待删除
|
|
|
@XxlJob("bytedanceEtlVideoProjectJob")
|
|
|
public void bytedanceEtlVideoProjectJob() throws Exception {
|
|
|
Date startDate = DateUtils.addDay(new Date(),-2);
|
|
@@ -38,6 +44,10 @@ public class BytedanceEtlVideoJob {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 头条视频报表url异常
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
@XxlJob("updBytedanceVideoJob")
|
|
|
public void updBytedanceVideoJob() throws Exception {
|
|
|
etlBytedanceReportVideoDailyService.updBytedanceVideo();
|
|
@@ -45,21 +55,38 @@ public class BytedanceEtlVideoJob {
|
|
|
|
|
|
@Autowired
|
|
|
private IETLReportBytedanceVideoService etlReportBytedanceVideoService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 清洗头条剪辑
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
@XxlJob("etlBytedanceVideoClipInfoJob")
|
|
|
public void etlBytedanceVideoClipInfoJob() throws Exception {
|
|
|
etlReportBytedanceVideoService.etlBytedanceVideoClipIdJob();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 清新头条视频报表编导数据
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
@XxlJob("etlBytedanceVideoPlanInfoJob")
|
|
|
public void etlBytedanceVideoPlanInfoJob() throws Exception {
|
|
|
etlReportBytedanceVideoService.etlBytedanceVideoPlanInfoJob();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 清洗头条拍摄
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
@XxlJob("etlBytedanceVideoShotInfoJob")
|
|
|
public void etlBytedanceVideoShotInfoJob() throws Exception {
|
|
|
etlReportBytedanceVideoService.etlBytedanceVideoShotInfoJob();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 头条视频报表数据任务
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
@XxlJob("formatBytedance")
|
|
|
public void etlBytedanceVideoJob() throws Exception {
|
|
|
etlBytedanceReportVideoDailyService.etlBytedanceVideo();
|