zhangqiankun 3 years ago
parent
commit
6f2749f3d2

+ 3 - 1
src/main/java/com/persagy/proxy/adm/controller/AdmSpaceController.java

@@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
 import com.alibaba.fastjson.JSONObject;
+import com.baomidou.mybatisplus.core.metadata.OrderItem;
 import com.fasterxml.jackson.databind.node.JsonNodeFactory;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.persagy.dmp.basic.model.QueryCriteria;
@@ -146,7 +147,8 @@ public class AdmSpaceController {
         }
         return objectNode;*/
     	ObjectNode criteria = AdmQueryCriteriaHelper.toCriteria(null, request.getFilters());
-    	return this.spaceRelationInfoHandler.querySpaceInfo(request, criteria);
+    	List<OrderItem> orderItem = AdmQueryCriteriaHelper.toOrderItem(request.getOrders());
+    	return this.spaceRelationInfoHandler.querySpaceInfo(request, criteria, orderItem);
     }
 
     /**

+ 17 - 47
src/main/java/com/persagy/proxy/adm/controller/RelationReportController.java

@@ -64,6 +64,7 @@ import lombok.extern.slf4j.Slf4j;
 @Slf4j
 @RestController
 @RequiredArgsConstructor
+@SuppressWarnings("deprecation")
 public class RelationReportController {
 
 	public static final String EXPORT_SHEET_NAME = "关系维护";
@@ -132,14 +133,15 @@ public class RelationReportController {
 		String projectId = request.getHeader(AdmCommonConstant.PROJECT_ID_HEADER);
 		String filters = requestCriteria.getFilters();
 		
+		
 		QueryCriteria queryCriteria = new QueryCriteria();
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
-		ObjectNode criteria = objectMapper.createObjectNode();
-		criteria.put("projectId", projectId);
-		
+		ObjectNode criteria = null;
 		Set<String> graphs = new HashSet<String>();
 		Set<String> relCodes = new HashSet<String>();
 		if (StrUtil.isNotBlank(filters)) {
+			criteria = AdmQueryCriteriaHelper.toCriteria(null, requestCriteria.getFilters());
+			
 			if (filters.contains("relationType")) {
 				String condition = filters.substring(filters.indexOf("in [") + 4, filters.lastIndexOf("]"));
 				String[] split = condition.split(",");
@@ -151,33 +153,20 @@ public class RelationReportController {
 						relCodes.add(typeEnum.getRelCode());
 					}
 				}
+				criteria.remove("relationType");
 			}
-			
-			String[] split = filters.split(";");
-			for (int i = 0; i < split.length; i++) {
-				if (i == 0) {
-					continue;
-				}
-				String express = split[i];
-				String cond = StrUtil.getContainsStr(express, AdmQueryCriteriaHelper.COND_STR);
-				cond = StrUtil.isBlank(cond) ? StrUtil.getContainsStr(express, AdmQueryCriteriaHelper.COND_STR_TRIM) : cond;
-		        if(StrUtil.isBlank(cond)) {
-		        	continue;
-		        }
-		        int condIndex = StrUtil.indexOfIgnoreCase(express, cond, 0);
-		        String condLeft = StrUtil.subPre(express, condIndex).trim();
-		        String condRight = StrUtil.subSuf(express, condIndex+cond.length()).trim();
-		        // condLeft 替换为中台的字段名称
-		        condLeft = this.convert2BDTPField(condLeft);
-		        if ("=".equals(cond)) {
-		        	criteria.put(condLeft, condRight);
-				} else {
-					JSONObject condition = new JSONObject();
-					condition.put(AdmQueryCriteriaHelper.OPERATOR_MAP.get(cond), condRight);
-					criteria.putPOJO(condLeft, condition);
-				}
+			if (criteria.has("automatic")) {
+				criteria.put("automaticFlag", criteria.get("automatic"));
+				criteria.remove("automatic");
+			}
+			if (criteria.has("source")) {
+				criteria.put("sourceFlag", criteria.get("source"));
+				criteria.remove("source");
 			}
 		}
+		if (criteria == null) {
+			criteria = objectMapper.createObjectNode();
+		}
 		if (CollectionUtil.isNotEmpty(graphs)) {
 			JSONObject graphObject = new JSONObject();
 			graphObject.put("$in", graphs);
@@ -188,7 +177,7 @@ public class RelationReportController {
 			relObject.put("$in", relCodes);
 			criteria.putPOJO("relCode", relObject);
 		}
-		
+		criteria.put("projectId", projectId);
 		queryCriteria.setCriteria(criteria);
 		List<JSONObject> relationProjectCal = this.relationReportService.getAllRelationProjectCal(queryCriteria, groupCode, projectId);
 		return AdmResponse.success(relationProjectCal);
@@ -702,23 +691,4 @@ public class RelationReportController {
 		return result;
 	}
 	
-	/**
-	 * 将前端所传的字段,转为BDTP中台所需要的字段
-	 * 
-	 * @param condLeft
-	 * @return 转换后的,或原字段
-	 */
-	private String convert2BDTPField(String condLeft) {
-		if ("automatic".equals(condLeft)) {
-			return "automaticFlag";
-		}
-		if ("source".equals(condLeft)) {
-			return "sourceFlag";
-		}
-		/*if ("graphicId".equals(condLeft)) {
-			return "graphCode";
-		}*/
-		return condLeft;
-	}
-
 }

+ 14 - 5
src/main/java/com/persagy/proxy/adm/handler/RelationReportHandler.java

@@ -1,6 +1,7 @@
 package com.persagy.proxy.adm.handler;
 
 import java.util.ArrayList;
+import java.util.Arrays;
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.List;
@@ -11,6 +12,7 @@ import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Component;
 
 import com.alibaba.fastjson.JSONObject;
+import com.baomidou.mybatisplus.core.metadata.OrderItem;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.google.common.collect.Lists;
 import com.google.common.collect.Sets;
@@ -62,7 +64,8 @@ public class RelationReportHandler {
 		HashSet<String> equipments = Sets.newHashSet(equipment);
 		
 		// 1.获取所有的设备对象数据
-		List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, equipments, Sets.newHashSet("classCode"), null);
+		List<OrderItem> classCodeAsc = Arrays.asList(OrderItem.asc("classCode"));
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, equipments, classCodeAsc);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}
@@ -92,20 +95,23 @@ public class RelationReportHandler {
 	 * 
 	 * @param groupCode
 	 * @param projectId
+	 * @return
 	 */
 	public List<EquipmentBindPointExcel> queryProjectBindPoint(String groupCode, String projectId) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
 		
+		List<OrderItem> classCodeAsc = Arrays.asList(OrderItem.asc("classCode"));
+		
 		// 1.获取项目名称
-		List<ObjectNode> projects = this.relationReportService.queryObjects(null, groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, null, null);
+		List<ObjectNode> projects = this.relationReportService.queryObjects(null, groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, null);
 		if (CollectionUtil.isEmpty(projects)) {
 			return Lists.newArrayList();
 		}
 		String projectName = projects.get(0).has("localName") ? projects.get(0).get("localName").asText() : null;
 		
 		// 2.获取所有的设备对象数据
-		List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, Sets.newHashSet(equipment), Sets.newHashSet("classCode"), null);
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, Sets.newHashSet(equipment), classCodeAsc);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}
@@ -135,20 +141,23 @@ public class RelationReportHandler {
 	 * 
 	 * @param groupCode
 	 * @param projectId
+	 * @return
 	 */
 	public List<EquipmentCountExcel> countClassCodeEquip(String groupCode, String projectId) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
 		
+		List<OrderItem> classCodeAsc = Arrays.asList(OrderItem.asc("classCode"));
+		
 		// 1.获取项目名称
-		List<ObjectNode> projects = this.relationReportService.queryObjects(null, groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, null, null);
+		List<ObjectNode> projects = this.relationReportService.queryObjects(null, groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, null);
 		if (CollectionUtil.isEmpty(projects)) {
 			return Lists.newArrayList();
 		}
 		String projectName = projects.get(0).has("localName") ? projects.get(0).get("localName").asText() : null;
 		
 		// 2.获取所有的设备对象数据
-		List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, Sets.newHashSet(equipment), Sets.newHashSet("classCode"), null);
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, Sets.newHashSet(equipment), classCodeAsc);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}

+ 78 - 89
src/main/java/com/persagy/proxy/adm/handler/SpaceRelationInfoHandler.java

@@ -10,6 +10,7 @@ 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;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.google.common.collect.Lists;
@@ -55,25 +56,11 @@ public class SpaceRelationInfoHandler {
 	 * @return
 	 * @throws Exception
 	 */
-	public JSONObject querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria) throws Exception {
+	public JSONObject querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria, List<OrderItem> orderItem) throws Exception {
 		List<ObjectNode> resultList = null;
 		String groupCode = AppContext.getContext().getGroupCode();
 		String projectId = AppContext.getContext().getProjectId();
 		
-		Set<String> ascOrder = new HashSet<String>();
-		Set<String> descOrder = new HashSet<String>();
-		String orders = request.getOrders();
-		if (StrUtil.isNotBlank(orders)) {
-			String[] split = orders.split(",");
-			for (String order : split) {
-				if (order.endsWith(" desc")) {
-					descOrder.add(order.split(" ")[0]);
-				} else {
-					ascOrder.add(order.split(" ")[0]);
-				}
-			}
-		}
-		
 		JSONObject result = new JSONObject();
 		result.put("result", "success");
 		
@@ -87,28 +74,29 @@ public class SpaceRelationInfoHandler {
 			String graphAndRelKey = GraphCodeEnum.ArchForArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Sp2Fl.name();
 			List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
 			if (CollectionUtil.isNotEmpty(allRelations)) {
-				resultList = this.transferSpaceInfo(allRelations, buildingId);
+				resultList = this.transferSpaceInfo(allRelations, buildingId, floorId);
 			}
 			
 		} else if (StrUtil.isNotBlank(buildingId) && StrUtil.isNotBlank(floorId) && "isnull".equals(floorId)) {
 			// 当建筑ID不为空、楼层ID为空时
-			this.querySpaceInfo(request, groupCode, projectId, buildingId, zoneTypeList, ascOrder, descOrder);
+			this.querySpaceInfo(request, groupCode, projectId, buildingId, zoneTypeList, orderItem);
 			
 		} else if (StrUtil.isNotBlank(buildingId) && StrUtil.isBlank(floorId) && !"isnull".equals(buildingId)) {
 			// 当建筑ID不为空、楼层ID为空时
 			String graphAndRelKey = GraphCodeEnum.ArchForArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Sp2Bd.name();
 			List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
 			if (CollectionUtil.isNotEmpty(allRelations)) {
-				resultList = this.transferSpaceInfo(allRelations, buildingId);
+				resultList = this.transferSpaceInfo(allRelations, buildingId, null);
 			}
 			
 		} else if (StrUtil.isNotBlank(buildingId) && StrUtil.isBlank(floorId) && "isnull".equals(buildingId)) {
-			resultList = this.querySpaceInfo(request, criteria, groupCode, projectId, zoneTypeList, ascOrder, descOrder);
+			// 当建筑ID为空、楼层ID为空时
+			resultList = this.querySpaceInfo(request, criteria, groupCode, projectId, zoneTypeList, orderItem);
 			
 		} else if (StrUtil.isBlank(buildingId) && StrUtil.isBlank(floorId)) {
 			// 直接获取所有的空间数据
 			List<ObjectNode> spacelist = this.relationReportService.queryObjects(criteria, groupCode, projectId, null, zoneTypeList, 
-					Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
+					Sets.newHashSet(AdmObjectType.SPACE.getIndex()), orderItem);
 			resultList = this.fillSpaceInfo(spacelist, null, null);
 		}
 		
@@ -118,6 +106,67 @@ public class SpaceRelationInfoHandler {
 		result.put("content", CollectionUtil.isEmpty(resultList) ? Lists.newArrayList() : resultList);
 		return result;
 	}
+	
+	/**
+	 * 获取空间信息,当楼层ID为空,建筑ID不为空时
+	 * 
+	 * @param request
+	 * @param criteria
+	 * @param groupCode
+	 * @param projectId
+	 * @param buildingId
+	 * @param zoneTypeList
+	 * @param orderItem
+	 * @return
+	 */
+	private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, String groupCode, String projectId, String buildingId, 
+			Set<String> zoneTypeList, List<OrderItem> orderItem) {
+		List<ObjectNode> resultList = null;
+		Set<String> spaceIds = new HashSet<String>();
+		Set<String> floorIds = new HashSet<String>();
+		Set<String> notBuildSpace = new HashSet<String>();
+		// 获取所有的楼层ID集合
+		List<ObjectRelation> relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Fl2Bd.name(), null, Sets.newHashSet(buildingId));
+		
+		// 获取所有楼层下的空间数据
+		if (CollectionUtil.isNotEmpty(relationObjects)) {
+			for (ObjectRelation objectRelation : relationObjects) {
+				floorIds.add(objectRelation.getObjFrom());
+			}
+			
+			// 根据楼层ID,获取所有的空间ID
+			relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Fl.name(), null, floorIds);
+			for (ObjectRelation objectRelation : relationObjects) {
+				spaceIds.add(objectRelation.getObjFrom());
+			}
+			// 再获取此建筑下,不是这些空间的空间
+			relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Bd.name(), null, Sets.newHashSet(buildingId));
+			for (ObjectRelation objectRelation : relationObjects) {
+				if (!spaceIds.contains(objectRelation.getObjFrom())) {
+					notBuildSpace.add(objectRelation.getObjFrom());
+				}
+			}
+			
+			if (CollectionUtil.isNotEmpty(notBuildSpace)){
+				// 获取所有的对象数据
+				resultList = this.relationReportService.queryObjects(null, groupCode, projectId, notBuildSpace, zoneTypeList, 
+    					Sets.newHashSet(AdmObjectType.SPACE.getIndex()), orderItem);
+    			this.fillSpaceInfo(resultList, buildingId, null);
+            }
+		} else {
+			// 获取所有的空间数据
+			String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Fl.name();
+			List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
+			if (CollectionUtil.isNotEmpty(allRelations)) {
+				resultList = this.transferSpaceInfo(allRelations, buildingId, null);
+			}
+		}
+		
+		spaceIds.clear();
+		notBuildSpace.clear();
+		return resultList;
+	}
+	
 
 	/**
 	 * 获取空间信息,当楼层ID为空,建筑ID为空时
@@ -127,12 +176,12 @@ public class SpaceRelationInfoHandler {
 	 * @param projectId
 	 * @return
 	 */
-	private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria, String groupCode, String projectId, Set<String> zoneTypeList, 
-			Set<String> ascOrder, Set<String> descOrder) {
+	private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria, String groupCode, String projectId, 
+			Set<String> zoneTypeList, List<OrderItem> orderItem) {
 		List<ObjectNode> resultList = null;
 		// 获取所有的建筑ID集合
 		List<ObjectNode> buildList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, 
-				Sets.newHashSet(AdmObjectType.BUILDING.getIndex()), null, null);
+				Sets.newHashSet(AdmObjectType.BUILDING.getIndex()), orderItem);
 		if (CollectionUtil.isNotEmpty(buildList)) {
 			for (ObjectNode objectNode : buildList) {
 				String buildingId = objectNode.get("id").asText();
@@ -141,13 +190,13 @@ public class SpaceRelationInfoHandler {
 				List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
 				if (CollectionUtil.isNotEmpty(allRelations)) {
 					// 获取所有的对象数据
-					resultList = this.transferSpaceInfo(allRelations, buildingId);
+					resultList = this.transferSpaceInfo(allRelations, buildingId, null);
 				}
 			}
 		} else {
 			// 获取所有的空间数据
 			List<ObjectNode> spacelist = this.relationReportService.queryObjects(criteria, groupCode, projectId, null, zoneTypeList, 
-					Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
+					Sets.newHashSet(AdmObjectType.SPACE.getIndex()), orderItem);
 			resultList = this.fillSpaceInfo(spacelist, null, null);
 		}
 		
@@ -159,9 +208,10 @@ public class SpaceRelationInfoHandler {
 	 * 
 	 * @param allRelations
 	 * @param buildingId
+	 * @param floorId
 	 * @return
 	 */
-	private List<ObjectNode> transferSpaceInfo(List<ObjectDigital> allRelations, String buildingId) {
+	private List<ObjectNode> transferSpaceInfo(List<ObjectDigital> allRelations, String buildingId, String floorId) {
 		if (CollectionUtil.isEmpty(allRelations)) {
 			return null;
 		}
@@ -184,7 +234,7 @@ public class SpaceRelationInfoHandler {
 			result.put("name", objectDigital.getName());
 			result.putPOJO("infos", new JSONArray());
 			result.putPOJO("statistics", new JSONArray());
-			result.put("state", objectDigital.getValid());
+			result.put("state", (objectDigital.getValid() == null || objectDigital.getValid() == 1) ? 0 : 1);
 			result.put("createTime", objectDigital.getCreationTime().toString("yyyy-MM-dd HH:mm:ss"));
 			
 			resultList.add(result);
@@ -198,67 +248,6 @@ public class SpaceRelationInfoHandler {
 	}
 
 	/**
-	 * 获取空间信息,当楼层ID为空,建筑ID为空时
-	 * 
-	 * @param request
-	 * @param groupCode
-	 * @param projectId
-	 * @param ascOrder
-	 * @param descOrder
-	 * @param buildingId
-	 * @param spaceIds
-	 * @param floorIds
-	 * @param zoneTypeList
-	 */
-	private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, String groupCode, String projectId, String buildingId, 
-			Set<String> zoneTypeList, Set<String> ascOrder, Set<String> descOrder) {
-		List<ObjectNode> resultList = null;
-		Set<String> spaceIds = new HashSet<String>();
-		Set<String> floorIds = new HashSet<String>();
-		Set<String> notBuildSpace = new HashSet<String>();
-		// 获取所有的楼层ID集合
-		List<ObjectRelation> relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Fl2Bd.name(), null, Sets.newHashSet(buildingId));
-		
-		// 获取所有楼层下的空间数据
-		if (CollectionUtil.isNotEmpty(relationObjects)) {
-			for (ObjectRelation objectRelation : relationObjects) {
-				floorIds.add(objectRelation.getObjFrom());
-			}
-			
-			// 根据楼层ID,获取所有的空间ID
-			relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Fl.name(), null, floorIds);
-			for (ObjectRelation objectRelation : relationObjects) {
-				spaceIds.add(objectRelation.getObjFrom());
-			}
-			// 再获取此建筑下,不是这些空间的空间
-			relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Bd.name(), null, Sets.newHashSet(buildingId));
-			for (ObjectRelation objectRelation : relationObjects) {
-				if (!spaceIds.contains(objectRelation.getObjFrom())) {
-					notBuildSpace.add(objectRelation.getObjFrom());
-				}
-			}
-			
-			if (CollectionUtil.isNotEmpty(notBuildSpace)){
-				// 获取所有的对象数据
-				resultList = this.relationReportService.queryObjects(null, groupCode, projectId, notBuildSpace, zoneTypeList, 
-    					Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
-    			this.fillSpaceInfo(resultList, buildingId, null);
-            }
-		} else {
-			// 获取所有的空间数据
-			String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Fl.name();
-			List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
-			if (CollectionUtil.isNotEmpty(allRelations)) {
-				resultList = this.transferSpaceInfo(allRelations, buildingId);
-			}
-		}
-		
-		spaceIds.clear();
-		notBuildSpace.clear();
-		return resultList;
-	}
-	
-	/**
 	 * 数据填充
 	 * 
 	 * @param queryObjects
@@ -280,7 +269,7 @@ public class SpaceRelationInfoHandler {
 			
 			objectNode.putPOJO("infos", new JSONArray());
 			objectNode.putPOJO("statistics", new JSONArray());
-			objectNode.put("state", objectNode.has("valid") ? objectNode.get("valid").asInt(1) : 1);
+			objectNode.put("state", objectNode.has("valid") ? (objectNode.get("valid").asInt(0) == 1 ? 0 : 1) : 0);
 		}
 		
 		return queryObjects;

+ 4 - 4
src/main/java/com/persagy/proxy/adm/service/IRelationReportService.java

@@ -5,6 +5,7 @@ import java.util.Map;
 import java.util.Set;
 
 import com.alibaba.fastjson.JSONObject;
+import com.baomidou.mybatisplus.core.metadata.OrderItem;
 import com.fasterxml.jackson.core.JsonProcessingException;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.persagy.dmp.basic.model.QueryCriteria;
@@ -168,18 +169,17 @@ public interface IRelationReportService {
 	/**
 	 * 获取原始的对象数据
 	 * 
-	 * @param criteria 条件参数
+	 * @param criteria
 	 * @param groupCode
 	 * @param projectId
 	 * @param ids
 	 * @param classCodes
 	 * @param objTypes
-	 * @param ascOrder
-	 * @param descOrder
+	 * @param orderItem
 	 * @return
 	 */
 	List<ObjectNode> queryObjects(ObjectNode criteria, String groupCode, String projectId, Set<String> ids, Set<String> classCodes, 
-			Set<String> objTypes, Set<String> ascOrder, Set<String> descOrder);
+			Set<String> objTypes, List<OrderItem> orderItem);
 	
 	/**
 	 * 获取原始的对象关系数据

+ 3 - 6
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

@@ -348,7 +348,7 @@ public class RelationReportService implements IRelationReportService {
 
 	@Override
 	public List<ObjectNode> queryObjects(ObjectNode criteria, String groupCode, String projectId, Set<String> ids, 
-			Set<String> classCodes, Set<String> objTypes, Set<String> ascOrder, Set<String> descOrder) {
+			Set<String> classCodes, Set<String> objTypes, List<OrderItem> orderItem) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
@@ -374,11 +374,8 @@ public class RelationReportService implements IRelationReportService {
 		objectCriteria.setPage(1L);
 		objectCriteria.setSize(500L);
 		objectCriteria.setCriteria(criteria);
-		if (CollectionUtil.isNotEmpty(ascOrder)) {
-			objectCriteria.setOrders(OrderItem.ascs(ascOrder.toArray(new String[ascOrder.size()])));
-		}
-		if (CollectionUtil.isNotEmpty(descOrder)) {
-			objectCriteria.setOrders(OrderItem.descs(descOrder.toArray(new String[descOrder.size()])));
+		if (CollectionUtil.isNotEmpty(orderItem)) {
+			objectCriteria.setOrders(orderItem);
 		}
 		List<ObjectNode> all = new ArrayList<ObjectNode>();
 		this.queryPageObjects(all, objectCriteria, groupCode, projectId);