|
@@ -1285,7 +1285,8 @@ public class ImportDataController extends BaseController {
|
|
|
}
|
|
|
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
- jsonObject.put("obj", data);
|
|
|
+ jsonObject.put("obj", JSON.parseObject(data));
|
|
|
+
|
|
|
String result = OkHttpUtils.httpPostJson(buildUrl + "getLightInfo", jsonObject.toJSONString());
|
|
|
ImportDataController.log.info("getLightInfo返回结果:" + result);
|
|
|
JSONObject resultJson = JSON.parseObject(result);
|