|
@@ -719,7 +719,7 @@ public class RelationReportService implements IRelationReportService {
|
|
result.put("relationTypeName",relationProject.has("relCodeName")?relationProject.get("relCodeName").asText():null);
|
|
result.put("relationTypeName",relationProject.has("relCodeName")?relationProject.get("relCodeName").asText():null);
|
|
result.put("source", relationProject.has("sourceFlag") && relationProject.get("sourceFlag").asBoolean());
|
|
result.put("source", relationProject.has("sourceFlag") && relationProject.get("sourceFlag").asBoolean());
|
|
result.put("automatic", relationProject.has("automaticFlag") && relationProject.get("automaticFlag").asBoolean());
|
|
result.put("automatic", relationProject.has("automaticFlag") && relationProject.get("automaticFlag").asBoolean());
|
|
- result.put("mepSystemType", relationProject.has("mepSystemType") ? new JSONArray() : relationProject.get("mepSystemType").asText());
|
|
|
|
|
|
+ result.put("mepSystemType", relationProject.has("mepSystemType") ? relationProject.get("mepSystemType").asText() : new JSONArray());
|
|
|
|
|
|
Long modifiedTime = relationProject.get("modifiedTime") == null ? null : relationProject.get("modifiedTime").asLong();
|
|
Long modifiedTime = relationProject.get("modifiedTime") == null ? null : relationProject.get("modifiedTime").asLong();
|
|
Long creationTime = relationProject.get("creationTime") == null ? null : relationProject.get("creationTime").asLong();
|
|
Long creationTime = relationProject.get("creationTime") == null ? null : relationProject.get("creationTime").asLong();
|