yumeng 5 vuotta sitten
vanhempi
commit
50dbcec2f9

+ 7 - 0
module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/batch/service/impl/BatchServiceImpl.java

@@ -1292,6 +1292,13 @@ public class BatchServiceImpl implements IBatchService {
             if (!Check.isNull(requestJson.getString("unitName"))) {
                 unitJson.put("unit_name", requestJson.getString("unitName"));
             }
+
+            // 资源位置
+            JSONArray scene_id = requestJson.getJSONArray("sceneId");
+            if (!Check.isNull(scene_id)) {
+                unitJson.put("scene_id", scene_id);
+            }
+
             // 出价
             if (!Check.isNull(requestJson.getLong("bid"))) {
                 unitJson.put("bid", requestJson.getLong("bid"));