Ver Fonte

V1.1.3 自动投放 批量修改出价 获取素材接口兼容app信息

yumeng há 4 anos atrás
pai
commit
2df02b1026

+ 4 - 0
module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/ai/controller/KuaiShouMaterialControer.java

@@ -48,6 +48,7 @@ public class KuaiShouMaterialControer {
      */
     @PostMapping(value = "/getNewVideoList")
     public JSONObject getNewVideo(@RequestBody JSONObject requestJson) {
+        log.info("获取上新素材入参:{}", requestJson);
         JSONObject returnJson = new JSONObject();
         try {
             if (Check.isNull(requestJson)) {
@@ -115,6 +116,7 @@ public class KuaiShouMaterialControer {
      */
     @PostMapping(value = "/getHistoryVideoList")
     public JSONObject getHistoryVideoList(@RequestBody JSONObject requestJson) {
+        log.info("获取历史素材入参:{}", requestJson);
         JSONObject returnJson = new JSONObject();
         try {
             if (Check.isNull(requestJson)) {
@@ -191,6 +193,7 @@ public class KuaiShouMaterialControer {
      */
     @PostMapping(value = "/getHistoryTopVideoList")
     public JSONObject getHistoryTopVideoList(@RequestBody JSONObject requestJson) {
+        log.info("获取历史Top素材入参:{}", requestJson);
         JSONObject returnJson = new JSONObject();
         try {
             if (Check.isNull(requestJson)) {
@@ -260,6 +263,7 @@ public class KuaiShouMaterialControer {
      */
     @PostMapping(value = "/getCreateZeroVideoList")
     public JSONObject getHistoryCreateVideoList(@RequestBody JSONObject requestJson) {
+        log.info("获取关联创意数为0素材入参:{}", requestJson);
         JSONObject returnJson = new JSONObject();
         try {
             if (Check.isNull(requestJson)) {

+ 1 - 1
module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/batch/mapper/xml/KuaiShouVideoGetMapper.xml

@@ -123,7 +123,7 @@
         where account_id = #{accountId}
         and signature = #{signature}
         and status = 0
-    </select
+    </select>
 
 
 </mapper>