Bladeren bron

Merge remote-tracking branch 'origin/develop' into develop

lijie 3 jaren geleden
bovenliggende
commit
edb16a87e4

+ 2 - 5
src/main/java/com/persagy/proxy/adm/controller/AdmDictController.java

@@ -16,10 +16,7 @@ import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 
 import javax.ws.rs.QueryParam;
 import java.util.ArrayList;
@@ -212,7 +209,7 @@ public class AdmDictController {
      * @return
      * @throws Exception
      */
-    @PostMapping("/syn-dic-project")
+    @GetMapping("/syn-dic-project")
     @Deprecated
     public AdmResponse syncProjectObjectInfo() throws Exception {
         return AdmResponse.success(new ArrayList<>());

+ 2 - 5
src/main/java/com/persagy/proxy/adm/controller/AdmShaftController.java

@@ -30,10 +30,7 @@ import com.persagy.proxy.adm.utils.AdmQueryCriteriaHelper;
 import com.persagy.proxy.adm.utils.ObjectNameUtil;
 import com.persagy.proxy.common.entity.RelationDTO;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 
 import javax.ws.rs.QueryParam;
 import java.util.*;
@@ -316,7 +313,7 @@ public class AdmShaftController {
      * @return
      * @throws Exception
      */
-    @PostMapping("/shaft-zoneSpaceBaseTable-building")
+    @GetMapping("/shaft-zoneSpaceBaseTable-building")
     public AdmResponse queryZoneSpBd(@QueryParam("shaftId") String shaftId,
              @QueryParam("objectType") String objectType) throws Exception {
         if(!StrUtil.isAllNotEmpty(shaftId,AdmContextUtil.toDmpContext().getProjectId())) {

+ 6 - 2
src/main/java/com/persagy/proxy/adm/controller/AdmSpaceController.java

@@ -17,6 +17,7 @@ import com.persagy.proxy.adm.service.IAdmFloorService;
 import com.persagy.proxy.adm.service.IAdmRelationService;
 import com.persagy.proxy.adm.service.IAdmSpaceService;
 import com.persagy.proxy.adm.utils.AdmContextUtil;
+import com.persagy.proxy.adm.utils.ObjectNameUtil;
 import com.persagy.proxy.common.entity.RelationDTO;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PostMapping;
@@ -74,9 +75,12 @@ public class AdmSpaceController {
                 msg = "classCode不可以为空!";
                 break;
             }
+            if (StrUtil.isEmpty(admSpace.getName())) {
+                admSpace.setName(ObjectNameUtil.objectName("空间-"));
+            }
         }
-        if(StrUtil.isNotEmpty(msg)){
-            vos = service.doInsertExt( AdmContextUtil.toDmpContext(), AdmSpace.class, vos);
+        if(StrUtil.isEmpty(msg)){
+            vos = service.doInsertExt(AdmContextUtil.toDmpContext(), AdmSpace.class, vos);
             return AdmResponse.success(vos);
         }else{
             return AdmResponse.failure(msg);

+ 63 - 40
src/main/java/com/persagy/proxy/adm/controller/RelationFlThroughFlController.java

@@ -13,7 +13,6 @@ import com.persagy.proxy.adm.utils.AdmContextUtil;
 import com.persagy.proxy.common.entity.InstanceUrlParam;
 import com.persagy.proxy.common.entity.RelationDTO;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -30,10 +29,12 @@ import java.util.List;
 @RestController
 @RequestMapping("/rel/fl-through-fl")
 public class RelationFlThroughFlController {
+
+    private static final String GRAPH_CODE = "ThroughRelationship";
+    private static final String REL_CODE = "Fl2Fl";
+
     @Autowired
     private IAdmRelationService service;
-    @Value("${middleware.group.code}")
-    private String groupCode;
     /**
      * 创建楼层的贯通关系
      * @param param
@@ -49,7 +50,9 @@ public class RelationFlThroughFlController {
         }
         // 创建关系对象
         List<RelationDTO> voList = new ArrayList<>();
-        voList.add(new RelationDTO(null, "ThroughRelationship", "Fl2Fl", null, floorId , floorOtherId));
+        RelationDTO relation = RelationDTO.builder().graphCode(GRAPH_CODE)
+                .relCode(REL_CODE).objFrom(floorId).objTo(floorOtherId).build();
+        voList.add(relation);
         service.doSave(AdmContextUtil.toDmpContext(), voList);
         return AdmResponse.success();
     }
@@ -62,26 +65,44 @@ public class RelationFlThroughFlController {
     @PostMapping("/unlink")
     public AdmResponse delete(@RequestBody JSONObject param) throws Exception {
         if(CollUtil.isEmpty(param)) {
-            return AdmResponse.success();
+            return AdmResponse.failure("必填项:FloorId(楼层id)、FloorOtherId(其他楼层id)");
         }
-        // 组装上下文条件
-        InstanceUrlParam context = AdmContextUtil.toDmpContext();
-        // 组装条件
-        QueryCriteria criteria = new QueryCriteria();
         String floorId = param.getString("floorId");
         String floorOtherId = param.getString("floorOtherId");
         if(!StrUtil.isAllNotEmpty(floorId,floorOtherId)) {
             return AdmResponse.failure("必填项:FloorId(楼层id)、FloorOtherId(其他楼层id)");
         }
+        deleteById(AdmContextUtil.toDmpContext(), floorId, floorOtherId);
+        return AdmResponse.success();
+    }
+
+    /**
+     * 通过楼层Id删除
+     * @param context
+     * @param fromId
+     * @param toId
+     */
+    private void deleteById(InstanceUrlParam context, String fromId, String toId) {
+        // 都为空不处理
+        if(StrUtil.isAllBlank(fromId, toId)) {
+            return;
+        }
+        // 关系条件
         ObjectNode node = JsonNodeFactory.instance.objectNode();
-        node.put("graphCode", "ThroughRelationship");
-        node.put("relCode", "Fl2Fl");
-        node.put("objFrom", floorId);
-        node.put("objTo",floorOtherId);
+        node.put("graphCode", GRAPH_CODE);
+        node.put("relCode", REL_CODE);
+        if(StrUtil.isNotBlank(fromId)) {
+            node.put("objFrom", fromId);
+        }
+        if(StrUtil.isNotBlank(toId)) {
+            node.put("objTo",toId);
+        }
+        // 执行删除
+        QueryCriteria criteria = new QueryCriteria();
         criteria.setCriteria(node);
         service.doDelete(context, criteria);
-        return AdmResponse.success();
     }
+
     /**
      * 创建楼层的贯通关系
      * 楼层的贯通,楼层一对多
@@ -93,27 +114,28 @@ public class RelationFlThroughFlController {
     public AdmResponse createFloorOtherIdList(@RequestBody JSONObject param) {
         String floorId = param.getString("floorId");
         JSONArray floorOtherIdList = param.getJSONArray("floorOtherIdList");
-        if(StrUtil.isBlank(floorId) || CollUtil.isEmpty(floorOtherIdList)) {
-            return AdmResponse.failure("必填项:FloorId(楼层id)、FloorOtherIdList(其他楼层id列表),测方法会覆盖以前的记录");
+        if(StrUtil.isBlank(floorId)) {
+            return AdmResponse.failure("必填项:FloorId(楼层id),此方法会覆盖以前的记录");
         }
-        // 创建关系对象.先删除,后添加
         InstanceUrlParam context = AdmContextUtil.toDmpContext();
+        // 先删除floorId的所有关系
+        deleteById(context, floorId, null);
+        deleteById(context, null, floorId);
+        // 如果没有待添加的,返回
+        if(CollUtil.isEmpty(floorOtherIdList)) {
+            return AdmResponse.success();
+        }
+        // 创建关系对象.先删除,后添加
         List<RelationDTO> voList = new ArrayList<>();
         for(int i = 0;i < floorOtherIdList.size();i++) {
             String floorOtherId = floorOtherIdList.getString(i);
             if(StrUtil.isBlank(floorOtherId)) {
                 continue;
             }
-            QueryCriteria queryRequest = new QueryCriteria();
-            ObjectNode node = JsonNodeFactory.instance.objectNode();
-            node.put("graphCode", "ThroughRelationship");
-            node.put("relCode", "Fl2Fl");
-            node.put("objFrom", floorId);
-            node.put("objTo", floorOtherId);
-            queryRequest.setCriteria(node);
-            service.doDelete(context,queryRequest);
-            // 创建关系对象 - 参考(datasyn中DataCenterSync.kt)
-            voList.add(new RelationDTO(null, "ThroughRelationship", "Fl2Fl", null, floorId, floorOtherId));
+            // 创建关系对象
+            RelationDTO relation = RelationDTO.builder().graphCode(GRAPH_CODE)
+                    .relCode(REL_CODE).objFrom(floorId).objTo(floorOtherId).build();
+            voList.add(relation);
         }
         // 组装上下文条件
         service.doSave(context, voList);
@@ -130,27 +152,28 @@ public class RelationFlThroughFlController {
     public AdmResponse createFloorIdList(@RequestBody JSONObject param) {
         String floorOtherId = param.getString("floorOtherId");
         JSONArray floorIdList = param.getJSONArray("floorIdList");
-        if(StrUtil.isBlank(floorOtherId) || CollUtil.isEmpty(floorIdList)) {
-            return AdmResponse.failure("必填项:FloorIdList(楼层id列表)、FloorOtherId(其他楼层id),测方法会覆盖以前的记录");
+        if(StrUtil.isBlank(floorOtherId)) {
+            return AdmResponse.failure("必填项:FloorOtherId(其他楼层id),测方法会覆盖以前的记录");
         }
-        // 创建关系对象.先删除,后添加
         InstanceUrlParam context = AdmContextUtil.toDmpContext();
+        // 先删除floorOtherId的所有关系
+        deleteById(context, floorOtherId, null);
+        deleteById(context, null, floorOtherId);
+        // 如果没有待添加的,返回
+        if(CollUtil.isEmpty(floorIdList)) {
+            return AdmResponse.success();
+        }
+        // 创建关系对象.先删除,后添加
         List<RelationDTO> voList = new ArrayList<>();
         for(int i = 0;i < floorIdList.size();i++) {
             String floorId = floorIdList.getString(i);
             if(StrUtil.isBlank(floorId)) {
                 continue;
             }
-            QueryCriteria queryRequest = new QueryCriteria();
-            ObjectNode node = JsonNodeFactory.instance.objectNode();
-            node.put("graphCode", "ThroughRelationship");
-            node.put("relCode", "Fl2Fl");
-            node.put("objFrom", floorId);
-            node.put("objTo", floorOtherId);
-            queryRequest.setCriteria(node);
-            service.doDelete(context,queryRequest);
-            // 创建关系对象 - 参考(datasyn中DataCenterSync.kt)
-            voList.add(new RelationDTO(null, "ThroughRelationship", "Fl2Fl", null, floorId, floorOtherId));
+            // 创建关系对象
+            RelationDTO relation = RelationDTO.builder().graphCode(GRAPH_CODE)
+                    .relCode(REL_CODE).objFrom(floorId).objTo(floorOtherId).build();
+            voList.add(relation);
         }
         // 组装上下文条件
         service.doSave(context, voList);

+ 8 - 7
src/main/java/com/persagy/proxy/adm/handler/RelationReportHandler.java

@@ -59,15 +59,16 @@ public class RelationReportHandler {
 	public List<EquipmentExcel> findEquipByNotSpace(String groupCode, String projectId) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
+		HashSet<String> equipments = Sets.newHashSet(equipment);
 		
 		// 1.获取所有的设备对象数据
-		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, equipment, "classCode");
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, equipments, Sets.newHashSet("classCode"), null);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}
 				
 		// 2.获取所有的设备类定义的className
-		List<ObjectTypeDefine> classList = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(equipment), null);
+		List<ObjectTypeDefine> classList = this.relationReportService.queryClassList(groupCode, projectId, null, equipments, null);
 		/** key-classCode, value-className */
 		Map<String, String> classDefine = new HashMap<String, String>();
 		for (ObjectTypeDefine objectTypeDefine : classList) {
@@ -75,7 +76,7 @@ public class RelationReportHandler {
 		}
 		
 		// 3.查询出所有的边类型为 Eq2Sp 的关系数据
-		List<ObjectRelation> relationObjects = this.relationReportService.findRelationObjects(groupCode, projectId, null, RelCodeEnum.Eq2Sp.name());
+		List<ObjectRelation> relationObjects = this.relationReportService.findRelationObjects(groupCode, projectId, null, RelCodeEnum.Eq2Sp.name(), null, null);
 		Set<String> excludeIds = new HashSet<String>();
 		if (CollectionUtil.isNotEmpty(relationObjects)) {
 			for (ObjectRelation relationInfo : relationObjects) {
@@ -97,14 +98,14 @@ public class RelationReportHandler {
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
 		
 		// 1.获取项目名称
-		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, projectId, AdmObjectType.PROJECT.getIndex(), null, null);
+		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, 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(groupCode, projectId, null, null, equipment, "classCode");
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, Sets.newHashSet(equipment), Sets.newHashSet("classCode"), null);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}
@@ -140,14 +141,14 @@ public class RelationReportHandler {
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
 		
 		// 1.获取项目名称
-		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, projectId, AdmObjectType.PROJECT.getIndex(), null, null);
+		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, 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(groupCode, projectId, null, null, equipment, "classCode");
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, Sets.newHashSet(equipment), Sets.newHashSet("classCode"), null);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}

+ 1 - 0
src/main/java/com/persagy/proxy/adm/model/AdmSpace.java

@@ -128,6 +128,7 @@ public class AdmSpace extends AdmSBaseEntity<AdmSpace>{
     /** 资产列表 */
     @CascadeColumn
     private List<AdmProperty> propertyList;
+
     /** 空间轮廓线 未使用 */
     //private T spaceOutline;
     /** 对象类型 */

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

@@ -134,10 +134,10 @@ public interface IRelationReportService {
 	 * 
 	 * @param groupCode
 	 * @param projectId
-	 * @param id
+	 * @param ids
 	 * @return 不会返回null
 	 */
-	ObjectNode getObjectNode(String groupCode, String projectId, String id);
+	List<ObjectNode> getObjectNode(String groupCode, String projectId, Set<String> ids);
 	
 	/**
 	 * 获取指定对象信息
@@ -170,13 +170,15 @@ public interface IRelationReportService {
 	 * 
 	 * @param groupCode
 	 * @param projectId
-	 * @param id
-	 * @param classCode
-	 * @param objType
+	 * @param ids
+	 * @param classCodes
+	 * @param objTypes
 	 * @param ascOrder
+	 * @param descOrder
 	 * @return
 	 */
-	List<ObjectNode> queryObjects(String groupCode, String projectId, String id, String classCode, String objType, String ascOrder);
+	List<ObjectNode> queryObjects(String groupCode, String projectId, Set<String> ids, Set<String> classCodes, Set<String> objTypes, 
+			Set<String> ascOrder, Set<String> descOrder);
 	
 	/**
 	 * 获取原始的对象关系数据
@@ -185,9 +187,11 @@ public interface IRelationReportService {
 	 * @param projectId
 	 * @param graphCode
 	 * @param relCode
+	 * @param objFroms
+	 * @param objTos
 	 * @return
 	 */
-	List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode);
+	List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode, Set<String> objFroms, Set<String> objTos);
 	
 	/**
 	 * 查询信息点定义

+ 2 - 0
src/main/java/com/persagy/proxy/adm/service/impl/AbstractAdmBaseServiceImpl.java

@@ -11,6 +11,7 @@ import com.fasterxml.jackson.databind.node.ArrayNode;
 import com.fasterxml.jackson.databind.node.JsonNodeFactory;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.persagy.dmp.basic.model.QueryCriteria;
+import com.persagy.dmp.common.constant.ValidEnum;
 import com.persagy.dmp.common.helper.SpringHelper;
 import com.persagy.dmp.common.model.entity.BaseEntity;
 import com.persagy.dmp.common.utils.JsonHelper;
@@ -213,6 +214,7 @@ public class AbstractAdmBaseServiceImpl<T> implements IAdmBaseService<T> {
         ObjectNode criteria = JsonNodeFactory.instance.objectNode();
         queryRequest.setCriteria(criteria);
         boolean isSelectTo = anno.selectToObj();
+        criteria.put(BaseEntity.PROP_VALID, ValidEnum.TRUE.getType());
         putString(criteria, "graphCode", anno.graphCode());
         putString(criteria, "relCode", anno.relCode());
         putString(criteria, "relValue", anno.relValue());

+ 6 - 2
src/main/java/com/persagy/proxy/adm/service/impl/AdmDictServiceImpl.java

@@ -360,11 +360,15 @@ public class AdmDictServiceImpl<T> extends AbstractAdmDictBaseServiceImpl<T> imp
         admObjectInfos = sortFuncidForEdit(admObjectInfos);
         //查询平台级信息点采集信息
         List<ObjectInfoCollect> commonObjectInfoCollect = queryObjectInfoCollect(context, "common", request.getType(), clazz);
-        Map<String, Boolean> commonObjectInfoCollectMap = commonObjectInfoCollect.stream().filter(item -> StrUtil.isNotEmpty(item.getDefineInfoId())).collect(Collectors.toMap(ObjectInfoCollect::getDefineInfoId,ObjectInfoCollect::getVisiable));
+        Map<String, Boolean> commonObjectInfoCollectMap = commonObjectInfoCollect.stream().filter(item ->
+                StrUtil.isNotEmpty(item.getDefineInfoId())).collect(
+                        Collectors.toMap(ObjectInfoCollect::getDefineInfoId,ObjectInfoCollect::getVisiable,(k1,k2)->k1));
 
         //查询项目级信息点采集信息
         List<ObjectInfoCollect> projectObjectInfoCollect = queryObjectInfoCollect(context, "project", request.getType(), clazz);
-        Map<String, Boolean> projectObjectInfoCollectMap = projectObjectInfoCollect.stream().filter(item -> StrUtil.isNotEmpty(item.getDefineInfoId())).collect(Collectors.toMap(ObjectInfoCollect::getDefineInfoId,ObjectInfoCollect::getVisiable));
+        Map<String, Boolean> projectObjectInfoCollectMap = projectObjectInfoCollect.stream().filter(item ->
+                StrUtil.isNotEmpty(item.getDefineInfoId())).collect(
+                        Collectors.toMap(ObjectInfoCollect::getDefineInfoId,ObjectInfoCollect::getVisiable,(k1,k2)->k1));
 
         String dictType = request.getDictType();
 

+ 5 - 49
src/main/java/com/persagy/proxy/adm/service/impl/AdmSpaceServiceImpl.java

@@ -140,31 +140,19 @@ public class AdmSpaceServiceImpl extends AbstractAdmBaseServiceImpl<AdmSpace> im
             }
         }else if(StrUtil.isEmpty(request.getBuildingId()) && StrUtil.isEmpty(request.getFloorId())){
             QueryCriteria queryCriteria = ensureQueryCommParm(dmpRequest, context, zoneTypeList, "space");
-            ObjectNode criteriaPe = queryCriteria.getCriteria();
+           /* ObjectNode criteriaPe = queryCriteria.getCriteria();
             JSONObject isnull = new JSONObject();
-            isnull.put("$null", false);
+            isnull.put("$null", true);
             criteriaPe.putPOJO("floorId", isnull);
-            queryCriteria.setCriteria(criteriaPe);
+            queryCriteria.setCriteria(criteriaPe);*/
             dmpResult = queryObj(context, queryCriteria);
             if(CollUtil.isNotEmpty(dmpResult.getData())){
                 spaceArray.addAll(dmpResult.getData());
             }
         }
-        //处理查询结果转化为目标返回值
-        List<JSONObject> jsonObjects = new ArrayList<JSONObject>();
-        if(CollUtil.isNotEmpty(spaceArray)){
-            List<AdmSpace> spaceList = JSONUtil.toList(JSONUtil.toJsonStr(spaceArray), AdmSpace.class);
-            Map<String, AdmSpace> admSpaceMap = CollUtil.fieldValueMap(spaceList, BaseEntity.PROP_ID);
-            admSpaceMap.values().stream().forEach(admSpace -> {
-                JSONObject jsonObject = new JSONObject();
-                jsonObject.put("zoneType", admSpace.getClassCode());
-                jsonObject.put("floorId", admSpace.getFloorId());
-                jsonObjects.add(jsonObject);
-            });
-        }
         AdmResponse admResponse = new AdmResponse();
-        admResponse.setContent(jsonObjects);
-        admResponse.setTotal(jsonObjects.size()*1l);
+        admResponse.setContent(spaceArray);
+        admResponse.setTotal(spaceArray.size()*1l);
         admResponse.setPageSize(request.getPageSize());
         admResponse.setPageNumber(request.getPageNumber());
         admResponse.setResult(DmpResult.SUCCESS);
@@ -402,13 +390,11 @@ public class AdmSpaceServiceImpl extends AbstractAdmBaseServiceImpl<AdmSpace> im
         if(CollUtil.isNotEmpty(vosR)) {
             List<RelationDTO> relationDTOS = new ArrayList<>(vosR.size());
             vosR.forEach(admSpace -> {
-                JSONObject requestData = new JSONObject();
                 if (StrUtil.isNotEmpty(admSpace.getBuildingId())) {
                     relationDTOS.add(new RelationDTO(null, "ArchSubset", "Bd2Sp", null, admSpace.getBuildingId(), admSpace.getId()));
                 }
                 if (StrUtil.isNotEmpty(admSpace.getFloorId())) {
                     relationDTOS.add(new RelationDTO(null, "ArchSubset", "Fl2Sp", null, admSpace.getFloorId(), admSpace.getId()));
-
                 }
             });
             if (CollUtil.isNotEmpty(relationDTOS)) {
@@ -417,36 +403,6 @@ public class AdmSpaceServiceImpl extends AbstractAdmBaseServiceImpl<AdmSpace> im
         }
     }
 
-
-    /**
-     * TODO 处理关系标记
-     */
-    private void processRelationType(InstanceUrlParam context, List<AdmSpace> vosR){
-        String[] relationTypes = {"sp2sp_SpaceNeighborhood_5", "sp2sp_TrafficNetwork_1", "sp2sp_ConvectionNetwork_1", "sp2sp_RadiationNetwork_1"};
-        List<String> listtype = Arrays.asList(relationTypes);
-        JSONArray jsonArray = new JSONArray();
-        listtype.forEach(type -> {
-            JSONObject relationProjectCal = new JSONObject();
-            //relationProjectCal.put("");
-
-        });
-        String relationType = "eq2sp_in";
-        /**
-         * val relationType = relationTypeProjectservice.select(SFilter.eq("projectId", projectId!!), SFilter.eq("relationType", "eq2sp_in"),SFilter.eq("zoneType", zoneSpace.classCode!!)).entity()
-         *             if (relationType!=null){
-         *                     relationType.computationalState = 2
-         *                     relationTypeProjectservice.update(relationType)
-         *             }
-         */
-    }
-
-    /**
-     * 清楚和空间关联的数据
-     */
-    private void deleteRelation(InstanceUrlParam context, String relCode, String ObjType){
-    }
-
-
     /**
      * 转换为目标实体,并增加属性
      */

+ 73 - 20
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

@@ -15,6 +15,7 @@ import com.fasterxml.jackson.core.JsonProcessingException;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.google.common.collect.Lists;
+import com.google.common.collect.Sets;
 import com.persagy.dmp.basic.dto.GraphParentMes;
 import com.persagy.dmp.basic.dto.RequestData;
 import com.persagy.dmp.basic.model.QueryCriteria;
@@ -190,7 +191,7 @@ public class RelationReportService implements IRelationReportService {
 				String relCode = objectNode.get("relCode") == null ? null : objectNode.get("relCode").asText();
 				tempList.add(this.fillRelationProjectCal(objectNode, graphDefine.getCode(), relCode, graphRelTypeMap,relationDefineMap, groupCode, projectId));
 			}
-			graphObject.put("relationTypeProjectList", projectList);
+			graphObject.put("relationTypeProjectList", tempList);
 			resultList.add(graphObject);
 		}
 
@@ -273,16 +274,20 @@ public class RelationReportService implements IRelationReportService {
 	}
 	
 	@Override
-	public ObjectNode getObjectNode(String groupCode, String projectId, String id) {
+	public List<ObjectNode> getObjectNode(String groupCode, String projectId, Set<String> ids) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
 		QueryCriteria queryCriteria = new QueryCriteria();
 		ObjectNode criteria = objectMapper.createObjectNode();
-		criteria.put("id", id);
+		if (CollectionUtil.isNotEmpty(ids)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", ids);
+			criteria.putPOJO("id", ids);
+		}
 		queryCriteria.setCriteria(criteria);
 		List<ObjectNode> objectNodes = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
-		return CollectionUtil.isEmpty(objectNodes) ? objectMapper.createObjectNode() : objectNodes.get(0); 
+		return objectNodes;
 	}
 	
 	@Override
@@ -322,8 +327,12 @@ public class RelationReportService implements IRelationReportService {
 		ObjectNode criteria = objectMapper.createObjectNode();
 		criteria.put("graphCode", graphCode);
 		criteria.put("relCode", relCode);
-		criteria.put("objFrom", objFrom);
-		criteria.put("objTo", objTo);
+		if (StrUtil.isNotBlank(objFrom)) {
+			criteria.put("objFrom", objFrom);
+		}
+		if (StrUtil.isNotBlank(objTo)) {
+			criteria.put("objTo", objTo);
+		}
 		queryCriteria.setCriteria(criteria);
 		List<ObjectRelation> objectRelations = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
 		if (CollectionUtil.isEmpty(objectRelations)) {
@@ -333,30 +342,41 @@ public class RelationReportService implements IRelationReportService {
 		// 获取关联对象的本地名称
 		ObjectRelation objectRelation = objectRelations.get(0);
 		String relationId = StrUtil.isBlank(objFrom) ? objectRelation.getObjFrom() : objectRelation.getObjTo();
-		return this.getObjectNode(groupCode, projectId, relationId); 
+		List<ObjectNode> objectNodes = this.getObjectNode(groupCode, projectId, Sets.newHashSet(relationId));
+		return CollectionUtil.isEmpty(objectNodes) ? objectMapper.createObjectNode() : objectNodes.get(0);
 	}
 
 	@Override
-	public List<ObjectNode> queryObjects(String groupCode, String projectId, String id, String classCode, String objType, String ascOrder) {
+	public List<ObjectNode> queryObjects(String groupCode, String projectId, Set<String> ids, Set<String> classCodes, Set<String> objTypes, 
+			Set<String> ascOrder, Set<String> descOrder) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
 		QueryCriteria objectCriteria = new QueryCriteria();
 		ObjectNode object = objectMapper.createObjectNode();
-		if (StrUtil.isNotBlank(id)) {
-			object.put("id", id);
+		if (CollectionUtil.isNotEmpty(ids)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", ids);
+			object.putPOJO("id", ids);
 		}
-		if (StrUtil.isNotBlank(classCode)) {
-			object.put("classCode", classCode);
+		if (CollectionUtil.isNotEmpty(classCodes)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", classCodes);
+			object.putPOJO("classCode", classCodes);
 		}
-		if (StrUtil.isNotBlank(objType)) {
-			object.put("objType", objType);
+		if (CollectionUtil.isNotEmpty(objTypes)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", objTypes);
+			object.putPOJO("objType", objTypes);
 		}
 		objectCriteria.setPage(1L);
 		objectCriteria.setSize(500L);
 		objectCriteria.setCriteria(object);
-		if (StrUtil.isNotBlank(ascOrder)) {
-			objectCriteria.setOrders(Collections.singletonList(OrderItem.asc(ascOrder)));
+		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()])));
 		}
 		List<ObjectNode> all = new ArrayList<ObjectNode>();
 		this.queryPageObjects(all, objectCriteria, groupCode, projectId);
@@ -364,7 +384,7 @@ public class RelationReportService implements IRelationReportService {
 	}
 	
 	@Override
-	public List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode) {
+	public List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode, Set<String> objFroms, Set<String> objTos) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		
 		// 获取出关联对象
@@ -378,9 +398,24 @@ public class RelationReportService implements IRelationReportService {
 		if (StrUtil.isNotBlank(relCode)) {
 			criteria.put("relCode", relCode);
 		}
+		if (CollectionUtil.isNotEmpty(objFroms)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", objFroms);
+			criteria.putPOJO("objFrom", objFroms);
+		}
+		if (CollectionUtil.isNotEmpty(objTos)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", objTos);
+			criteria.putPOJO("objTo", objTos);
+		}
+		
+		queryCriteria.setPage(1L);
+		queryCriteria.setSize(500L);
 		queryCriteria.setCriteria(criteria);
-		List<ObjectRelation> objectRelations = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
-		return CollectionUtil.isEmpty(objectRelations) ? Lists.newArrayList() : objectRelations;
+		
+		List<ObjectRelation> all = new ArrayList<ObjectRelation>();
+		this.queryPageRelations(all, queryCriteria, groupCode, projectId);
+		return all;
 	}
 	
 	@Override
@@ -775,12 +810,30 @@ public class RelationReportService implements IRelationReportService {
 		objectCriteria.setPage((objectCriteria.getPage() + 1));
 		this.queryPageObjects(all, objectCriteria, groupCode, projectId);
 	}
+
+	/**
+	 * 分页查询关系数据
+	 * 
+	 * @param all
+	 * @param queryCriteria
+	 * @param groupCode
+	 * @param projectId
+	 */
+	private void queryPageRelations(List<ObjectRelation> all, QueryCriteria queryCriteria, String groupCode, String projectId) {
+		List<ObjectRelation> objectRelations = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
+		if (CollectionUtil.isEmpty(objectRelations)) {
+			return;
+		}
+		all.addAll(objectRelations);
+		queryCriteria.setPage((queryCriteria.getPage() + 1));
+		this.queryPageRelations(all, queryCriteria, groupCode, projectId);
+	}
 	
 	/**
 	 * 分页查询信息点定义数据
 	 * 
 	 * @param all
-	 * @param classCriteria
+	 * @param queryCriteria
 	 * @param groupCode
 	 * @param projectId
 	 */

+ 2 - 2
src/main/java/com/persagy/proxy/adm/utils/AdmQueryCriteriaHelper.java

@@ -10,8 +10,8 @@ import com.fasterxml.jackson.databind.node.JsonNodeFactory;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.persagy.dmp.basic.model.QueryCriteria;
 import com.persagy.dmp.basic.model.QueryOperator;
+import com.persagy.dmp.common.constant.ValidEnum;
 import com.persagy.dmp.common.model.entity.BaseEntity;
-import com.persagy.proxy.adm.constant.enums.ValidEnum;
 import com.persagy.proxy.adm.request.AdmQueryCriteria;
 
 import java.math.BigDecimal;
@@ -72,7 +72,7 @@ public class AdmQueryCriteriaHelper {
         }
         // 补充valid = 1
         if(!criteria.has(BaseEntity.PROP_VALID)) {
-            criteria.put(BaseEntity.PROP_VALID, ValidEnum.TRUE.getValue());
+            criteria.put(BaseEntity.PROP_VALID, ValidEnum.TRUE.getType());
         }
         // 补充关系条件
         if(admCriteria.getRelationFrom() != null) {