|
@@ -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"));
|