Browse Source

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

lijie 3 years ago
parent
commit
457b33a840

+ 4 - 0
src/main/java/com/persagy/proxy/adm/model/AdmBaseEntity.java

@@ -4,6 +4,7 @@ import com.persagy.dmp.common.model.entity.BaseEntity;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
 
+import java.util.List;
 import java.util.Map;
 
 /**
@@ -19,4 +20,7 @@ public abstract class AdmBaseEntity<T> extends BaseEntity {
     private Map<String, Object> infos;
     /** 集团编码 */
     private String groupCode;
+    /** 需要删除的对象 */
+    private List<String> nullList;
+
 }

+ 15 - 0
src/main/java/com/persagy/proxy/adm/utils/AdmEntityTransferUtil.java

@@ -40,6 +40,21 @@ public class AdmEntityTransferUtil {
                 jsonNode.remove("outline");
                 jsonNode.put("outline", outLine.toString());
             }
+            ArrayNode nullList = (ArrayNode) jsonNode.get("nullList");
+
+            if(nullList != null && nullList.size() > 0) {
+                for(int k=0; k < nullList.size(); k++){
+                    String node = nullList.get(k).textValue();
+                    if(node.startsWith("infos.")){
+                        node = node.replace("infos.","");
+                        jsonNode.remove(node);
+                        nullList.remove(i);
+                        nullList.add(node);
+                    }
+                }
+                jsonNode.remove("nullList");
+                jsonNode.putPOJO("$remove", nullList);
+            }
         }
         return arrayNode;
     }

+ 10 - 1
src/main/java/com/persagy/proxy/dictionary/controller/AdmLabslController.java

@@ -1,5 +1,6 @@
 package com.persagy.proxy.dictionary.controller;
 
+import cn.hutool.core.collection.CollUtil;
 import com.persagy.proxy.object.model.AdmObjectInfo;
 import com.persagy.proxy.dictionary.model.AdmObjectType;
 import com.persagy.proxy.adm.request.AdmResponse;
@@ -16,6 +17,7 @@ import org.springframework.web.bind.annotation.RestController;
 
 import javax.ws.rs.QueryParam;
 import java.util.List;
+import java.util.stream.Collectors;
 
 /**
  * @ClassName AdmLabslController
@@ -92,7 +94,14 @@ public class AdmLabslController {
     public AdmResponse queryMajorCategory(@QueryParam("projectId") String projectId,
                                           @RequestBody List<String> ids) throws Exception {
         InstanceUrlParam context = AdmContextUtil.toDmpContext();
-        return service.queryMajorCategory(context, ids , AdmObjectType.class);
+        if(CollUtil.isEmpty(ids)){
+            return AdmResponse.failure("项目下没有设备类型");
+        }
+        List<String> newIds = ids.stream().filter(id->"fisnull".equals(id)).collect(Collectors.toList());
+        if(CollUtil.isEmpty(newIds)){
+            return AdmResponse.failure("项目下没有设备类型");
+        }
+        return service.queryMajorCategory(context, newIds , AdmObjectType.class);
     }
 
 }

+ 7 - 5
src/main/java/com/persagy/proxy/object/service/impl/AdmSystemServiceImpl.java

@@ -60,11 +60,13 @@ public class AdmSystemServiceImpl extends AbstractAdmBaseServiceImpl<AdmSystem>
         List<AdmEquipment> equipmentList = new ArrayList<>();
         for(AdmSystem vo:vos) {
             vo.setCategoryName(codeNameMap.get(vo.getClassCode()));
-            AdmSystemCategory admSystemCategory = new AdmSystemCategory();
-            admSystemCategory.setCategoryName(codeNameMaps.get(vo.getClassCode()).getName());
-            admSystemCategory.setCode(codeNameMaps.get(vo.getClassCode()).getCode());
-            admSystemCategory.setProjectI(codeNameMaps.get(vo.getClassCode()).getProjectId());
-            vo.setCategoryNames(admSystemCategory);
+            if(codeNameMaps.get(vo.getClassCode()) != null){
+                AdmSystemCategory admSystemCategory = new AdmSystemCategory();
+                admSystemCategory.setCategoryName(codeNameMaps.get(vo.getClassCode()).getName());
+                admSystemCategory.setCode(codeNameMaps.get(vo.getClassCode()).getCode());
+                admSystemCategory.setProjectI(codeNameMaps.get(vo.getClassCode()).getProjectId());
+                vo.setCategoryNames(admSystemCategory);
+            }
             // 收集设备对象
             if(CollUtil.isEmpty(vo.getEquipmentList())) {
                 continue;

+ 128 - 107
src/main/java/com/persagy/proxy/report/controller/AdmReportEquipController.java

@@ -749,49 +749,56 @@ public class AdmReportEquipController {
             return AdmResponse.failure(ResponseCode.A0400.getCode());
         }
         Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
+        AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
+        gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
         // 根据objType获取定义 获取采集的设备的classcode
         Set<String> objTypes = new HashSet<>(1);
         objTypes.add(AdmEquipment.OBJ_TYPE);
         List<Map<String, Object>> codes = DigitalObjectSimpleFacade.queryDefineInfoByObjType(AdmContextUtil.toDmpContext().getGroupCode(), AdmContextUtil.toDmpContext().getProjectId(), AdmCommonConstant.APP_ID,null, RequestData.builder().objTypes(objTypes).build());
-        Set<String> classCodeSet = new HashSet<String>(codes.size());
-        codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
-
-        //项目下所有已采集的动态信息点编码
-        List<ObjectInfoDefine> dynamicInfoPointCodes = gatherDynamicInfoCode(false, classCodeSet);
-        //项目下所有已采集静态信息点编码
-        List<ObjectInfoDefine> staticInfoPointCodes =  gatherStaticInfoCode(false, classCodeSet);
-        //项目下所有的设备  分页查询
-        AdmQueryCriteria admQueryCriteriaObj =  new AdmQueryCriteria();
-        admQueryCriteriaObj.setPageNumber(1);
-        admQueryCriteriaObj.setPageSize(500);
-        admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
-
-        admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","bimLocation","infos","classCode","equipSerial","bimFamilyName","bimFamilySymbol"));
-        AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
-
-        Map<String,Integer> hashMap = new HashMap<>();
-        List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
-        List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
-        calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment,0, hashMap);
-
-        long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
-        if(page >= 2){
-            for(long i = 2; i <= page; i++){
-                admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
-                admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
-                admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
-                projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
-                calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment,0, hashMap);
+        if(CollUtil.isNotEmpty(codes)) {
+            Set<String> classCodeSet = new HashSet<String>(codes.size());
+            codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
+
+            //项目下所有已采集的动态信息点编码
+            List<ObjectInfoDefine> dynamicInfoPointCodes = gatherDynamicInfoCode(false, classCodeSet);
+            //项目下所有已采集静态信息点编码
+            List<ObjectInfoDefine> staticInfoPointCodes = gatherStaticInfoCode(false, classCodeSet);
+            //项目下所有的设备  分页查询
+            AdmQueryCriteria admQueryCriteriaObj = new AdmQueryCriteria();
+            admQueryCriteriaObj.setPageNumber(1);
+            admQueryCriteriaObj.setPageSize(500);
+            admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
+
+            admQueryCriteriaObj.setProjection(Arrays.asList("id", "name", "localId", "localName", "cadId", "bimId", "bimLocation", "infos", "classCode", "equipSerial", "bimFamilyName", "bimFamilySymbol"));
+            AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
+
+            Map<String, Integer> hashMap = new HashMap<>();
+            List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
+            List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList, null, null);
+            calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment, 0, hashMap);
+
+            long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
+            if (page >= 2) {
+                for (long i = 2; i <= page; i++) {
+                    admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
+                    admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
+                    admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
+                    projectEquipment = JsonNodeUtils.toListNode(admEquipmentList, null, null);
+                    calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment, 0, hashMap);
+                }
             }
+            gatherInfoPoint.setDynamicInfoPointCounts(dynamicInfoPointCodes.size());
+            gatherInfoPoint.setStaticInfoPointCounts(staticInfoPointCodes.size());
+            gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
+            gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
+            gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
+        }else{
+            gatherInfoPoint.setDynamicInfoPointCounts(0);
+            gatherInfoPoint.setStaticInfoPointCounts(0);
+            gatherInfoPoint.setGatherCustomInfoPointCounts(0);
+            gatherInfoPoint.setGatherDynamicInfoPointCounts(0);
+            gatherInfoPoint.setGatherStaticInfoPointCounts(0);
         }
-        AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
-        gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
-        gatherInfoPoint.setDynamicInfoPointCounts(dynamicInfoPointCodes.size());
-        gatherInfoPoint.setStaticInfoPointCounts(staticInfoPointCodes.size());
-        gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
-        gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
-        gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
-        gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
         return AdmResponse.success(CollUtil.newArrayList(gatherInfoPoint));
     }
 
@@ -804,48 +811,55 @@ public class AdmReportEquipController {
         if(StrUtil.isEmpty(AdmContextUtil.toDmpContext().getProjectId())){
             return AdmResponse.failure(ResponseCode.A0400.getCode());
         }
+        AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
+
         Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
        // 根据objType获取定义 获取采集的设备的classcode
         Set<String> objTypes = new HashSet<>(1);
         objTypes.add(AdmEquipment.OBJ_TYPE);
         List<Map<String, Object>> codes = DigitalObjectSimpleFacade.queryDefineInfoByObjType(AdmContextUtil.toDmpContext().getGroupCode(), AdmContextUtil.toDmpContext().getProjectId(), AdmCommonConstant.APP_ID,null, RequestData.builder().objTypes(objTypes).build());
-        Set<String> classCodeSet = new HashSet<String>(codes.size());
-        codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
-
-        //项目下所有已采集的动态信息点编码
-        List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
-        //项目下所有已采集静态信息点编码
-        List<ObjectInfoDefine> gatherStaticInfoCode =  gatherStaticInfoCode(true, classCodeSet);
-
-        //项目下所有的设备  分页查询
-        AdmQueryCriteria admQueryCriteriaObj =  new AdmQueryCriteria();
-        admQueryCriteriaObj.setPageNumber(1);
-        admQueryCriteriaObj.setPageSize(500);
-        admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
-
-        admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","bimLocation","infos","classCode","equipSerial","bimFamilyName","bimFamilySymbol"));
-        AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
-
-        Map<String,Integer> hashMap = new HashMap<>();
-        List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
-        List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
-        calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
-
-        long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
-        if(page >= 2){
-            for(long i = 2; i <= page; i++){
-                admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
-                admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
-                admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
-                projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
-                calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
+        if(CollUtil.isNotEmpty(codes)){
+            Set<String> classCodeSet = new HashSet<String>(codes.size());
+            codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
+
+            //项目下所有已采集的动态信息点编码
+            List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
+            //项目下所有已采集静态信息点编码
+            List<ObjectInfoDefine> gatherStaticInfoCode =  gatherStaticInfoCode(true, classCodeSet);
+
+            //项目下所有的设备  分页查询
+            AdmQueryCriteria admQueryCriteriaObj =  new AdmQueryCriteria();
+            admQueryCriteriaObj.setPageNumber(1);
+            admQueryCriteriaObj.setPageSize(500);
+            admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
+
+            admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","bimLocation","infos","classCode","equipSerial","bimFamilyName","bimFamilySymbol"));
+            AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
+
+            Map<String,Integer> hashMap = new HashMap<>();
+            List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
+            List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
+            calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
+
+            long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
+            if(page >= 2){
+                for(long i = 2; i <= page; i++){
+                    admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
+                    admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
+                    admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
+                    projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
+                    calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
+                }
             }
+            gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
+            gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
+            gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
+        }else{
+            gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
+            gatherInfoPoint.setGatherCustomInfoPointCounts(0);
+            gatherInfoPoint.setGatherDynamicInfoPointCounts(0);
+            gatherInfoPoint.setGatherStaticInfoPointCounts(0);
         }
-        AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
-        gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
-        gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
-        gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
-        gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
         return AdmResponse.success(CollUtil.newArrayList(gatherInfoPoint));
     }
 
@@ -855,48 +869,55 @@ public class AdmReportEquipController {
      */
     @PostMapping("/system-info-point")
     public AdmResponse systemInfoPoin() {
+        AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
         Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
         // 根据objType获取定义 获取采集的设备的classcode
         Set<String> objTypes = new HashSet<>(1);
         objTypes.add(AdmSystem.OBJ_TYPE);
         List<Map<String, Object>> codes = DigitalObjectSimpleFacade.queryDefineInfoByObjType(AdmContextUtil.toDmpContext().getGroupCode(), AdmContextUtil.toDmpContext().getProjectId(), AdmCommonConstant.APP_ID,null, RequestData.builder().objTypes(objTypes).build());
-        Set<String> classCodeSet = new HashSet<String>(codes.size());
-        codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
-
-        //项目下所有已采集的动态信息点编码
-        List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
-        //项目下所有已采集静态信息点编码
-        List<ObjectInfoDefine> gatherStaticInfoCode =  gatherStaticInfoCode(true, classCodeSet);
-
-        //项目下所有的设备  分页查询
-        AdmQueryCriteria admQueryCriteriaObj =  new AdmQueryCriteria();
-        admQueryCriteriaObj.setPageNumber(1);
-        admQueryCriteriaObj.setPageSize(500);
-        admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
-
-        admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","infos","classCode"));
-        AdmResponse admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
-
-        Map<String,Integer> hashMap = new HashMap<>();
-        List<AdmSystem> admSystemList = (List<AdmSystem>) admResponse.getContent();
-        List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
-        calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
-
-        long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
-        if(page >= 2){
-            for(long i = 2; i <= page; i++){
-                admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
-                admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
-                admSystemList = (List<AdmSystem>) admResponse.getContent();
-                projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
-                calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
+        if(CollUtil.isNotEmpty(codes)){
+            Set<String> classCodeSet = new HashSet<String>(codes.size());
+            codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
+
+            //项目下所有已采集的动态信息点编码
+            List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
+            //项目下所有已采集静态信息点编码
+            List<ObjectInfoDefine> gatherStaticInfoCode =  gatherStaticInfoCode(true, classCodeSet);
+
+            //项目下所有的设备  分页查询
+            AdmQueryCriteria admQueryCriteriaObj =  new AdmQueryCriteria();
+            admQueryCriteriaObj.setPageNumber(1);
+            admQueryCriteriaObj.setPageSize(500);
+            admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
+
+            admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","infos","classCode"));
+            AdmResponse admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
+
+            Map<String,Integer> hashMap = new HashMap<>();
+            List<AdmSystem> admSystemList = (List<AdmSystem>) admResponse.getContent();
+            List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
+            calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
+
+            long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
+            if(page >= 2){
+                for(long i = 2; i <= page; i++){
+                    admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
+                    admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
+                    admSystemList = (List<AdmSystem>) admResponse.getContent();
+                    projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
+                    calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
+                }
             }
+            gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
+            gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
+            gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
+            gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
+        }else{
+            gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
+            gatherInfoPoint.setGatherCustomInfoPointCounts(0);
+            gatherInfoPoint.setGatherDynamicInfoPointCounts(0);
+            gatherInfoPoint.setGatherStaticInfoPointCounts(0);
         }
-        AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
-        gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
-        gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
-        gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
-        gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
         return AdmResponse.success(CollUtil.newArrayList(gatherInfoPoint));
     }