yumeng 3 rokov pred
rodič
commit
06a058508d

+ 7 - 7
jeecg-boot-module-system/src/main/java/cn/com/ctop/kuaishou/modules/hosting/service/impl/KuaishouHostingTaskServiceImpl.java

@@ -341,21 +341,21 @@ public class KuaishouHostingTaskServiceImpl extends ServiceImpl<KuaishouHostingT
             }
             if (task.getIsOpen() == 1) {
                 JSONObject intelliExtend = new JSONObject();
-                intelliExtend.put("isOpen", task.getIsOpen());
+                intelliExtend.put("is_open", task.getIsOpen());
                 if (task.getNoAgeBreak() == 1) {
-                    intelliExtend.put("noAgeBreak", true);
+                    intelliExtend.put("no_age_break", true);
                 } else {
-                    intelliExtend.put("noAgeBreak", false);
+                    intelliExtend.put("no_age_break", false);
                 }
                 if (task.getNoGenderBreak() == 1) {
-                    intelliExtend.put("noGenderBreak", true);
+                    intelliExtend.put("no_gender_break", true);
                 } else {
-                    intelliExtend.put("noGenderBreak", false);
+                    intelliExtend.put("no_gender_break", false);
                 }
                 if (task.getNoAreaBreak() == 1) {
-                    intelliExtend.put("noAreaBreak", true);
+                    intelliExtend.put("no_area_break", true);
                 } else {
-                    intelliExtend.put("noAreaBreak", false);
+                    intelliExtend.put("no_area_break", false);
                 }
                 adDspTarget.put("intelli_extend", intelliExtend);
             }