Ver código fonte

添加 计划转化目标、转化出价预警

zxa 3 anos atrás
pai
commit
bc3107bf2f

+ 16 - 0
job-bytedance/src/main/java/cn/com/ctop/job/bytedance/handler/BytedancePlanLoadJob.java

@@ -160,5 +160,21 @@ public class BytedancePlanLoadJob {
     }
 
 
+    /**
+     * 计划转化目标、转化出价预警
+     *
+     * @throws Exception
+     */
+    @XxlJob("ocpxActionTypeTrackUrlJob")
+    public void ocpxActionTypeTrackUrlJob() throws Exception {
+        String param = XxlJobHelper.getJobParam(); // 执行参数
+       String urlPrefix = "http://118.24.244.213:8808/bytedance-api/ad/bytedancePlanJobController/ocpxActionTypeTrackUrl";
+
+        Map<String,Object> map = new HashMap();
+        map.put("accountId",param);
+        HttpUtils.httpGet(urlPrefix, map, null);
+    }
+
+
 
 }