|
@@ -78,8 +78,12 @@ public class KuaiShouDimensionVariableServiceImpl extends ServiceImpl<KuaiShouDi
|
|
if (!Check.isNull(appIdArray)) {
|
|
if (!Check.isNull(appIdArray)) {
|
|
List<JSONObject> appIdList = new ArrayList<>();
|
|
List<JSONObject> appIdList = new ArrayList<>();
|
|
for (int i = 0; i < appIdArray.size(); i++) {
|
|
for (int i = 0; i < appIdArray.size(); i++) {
|
|
|
|
+ JSONArray app_ids = appIdArray.getJSONArray(i);
|
|
|
|
+ if (Check.isNull(app_ids)) {
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
JSONObject appIdJson = new JSONObject();
|
|
JSONObject appIdJson = new JSONObject();
|
|
- appIdJson.put("app_ids", appIdArray.getJSONArray(i));
|
|
|
|
|
|
+ appIdJson.put("app_ids", app_ids);
|
|
appIdList.add(appIdJson);
|
|
appIdList.add(appIdJson);
|
|
}
|
|
}
|
|
inputList.add(appIdList);
|
|
inputList.add(appIdList);
|