|
@@ -8,7 +8,6 @@ import java.util.Set;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
-import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.metadata.OrderItem;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
@@ -232,8 +231,8 @@ public class SpaceRelationInfoHandler {
|
|
|
result.put("projectId", objectDigital.getProjectId());
|
|
|
result.put("localName", objectDigital.getLocalName());
|
|
|
result.put("name", objectDigital.getName());
|
|
|
- result.putPOJO("infos", new JSONArray());
|
|
|
- result.putPOJO("statistics", new JSONArray());
|
|
|
+ result.putPOJO("infos", new JSONObject());
|
|
|
+ result.putPOJO("statistics", new JSONObject());
|
|
|
result.put("state", (objectDigital.getValid() == null || objectDigital.getValid() == 1) ? 0 : 1);
|
|
|
result.put("createTime", objectDigital.getCreationTime().toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
|
@@ -267,8 +266,8 @@ public class SpaceRelationInfoHandler {
|
|
|
objectNode.put("buildingId", buildingId);
|
|
|
}
|
|
|
|
|
|
- objectNode.putPOJO("infos", new JSONArray());
|
|
|
- objectNode.putPOJO("statistics", new JSONArray());
|
|
|
+ objectNode.putPOJO("infos", new JSONObject());
|
|
|
+ objectNode.putPOJO("statistics", new JSONObject());
|
|
|
objectNode.put("state", objectNode.has("valid") ? (objectNode.get("valid").asInt(0) == 1 ? 0 : 1) : 0);
|
|
|
}
|
|
|
|