| | |
| | | import com.ycl.platform.domain.vo.DynamicColumnVO; |
| | | import com.ycl.platform.mapper.DynamicColumnMapper; |
| | | import com.ycl.platform.mapper.ImageResourceSecurityDetailMapper; |
| | | import com.ycl.platform.mapper.TMonitorMapper; |
| | | import com.ycl.platform.mapper.YwPointMapper; |
| | | import com.ycl.platform.service.*; |
| | | import com.ycl.system.Result; |
| | | import com.ycl.system.entity.SysDept; |
| | | import com.ycl.system.model.LoginUser; |
| | | import com.ycl.system.service.ISysConfigService; |
| | | import com.ycl.system.service.ISysDeptService; |
| | | import com.ycl.utils.DateUtils; |
| | | import com.ycl.utils.MongoUtil; |
| | | import com.ycl.utils.SecurityUtils; |
| | | import com.ycl.utils.StringUtils; |
| | | import com.ycl.utils.bean.BeanUtils; |
| | | import com.ycl.utils.poi.ExcelUtil; |
| | |
| | | private final MongoTemplate mongoTemplate; |
| | | private final ImageResourceSecurityDetailMapper securityDetailMapper; |
| | | private final YwPointMapper pointMapper; |
| | | private final ICheckIndexVideoService checkIndexVideoService; |
| | | private final ICheckIndexCarService checkIndexCarService; |
| | | private final ICheckIndexFaceService checkIndexFaceService; |
| | | private final DynamicColumnMapper dynamicColumnMapper; |
| | |
| | | |
| | | private static DecimalFormat DF = new DecimalFormat("#.####"); |
| | | |
| | | |
| | | |
| | | public Map<String,List<DynamicColumnVO>> getDynamicByConditions(DataCenterQuery params,List<DynamicColumnVO> list){ |
| | | //TODO 该位置没有过滤账号的部门对应的设备信息,而是更具条件查询的全部 |
| | | //获得到对应id,且包含传入字符串 动态列集合 |
| | | List<DynamicColumnVO> likeFieldDynamicColumnVOList = list.stream() |
| | | .filter(dynamicColumnVO -> |
| | | dynamicColumnVO.getLabelId().equals(params.getDyId()) && |
| | | dynamicColumnVO.getColumnValue().contains(params.getDyValue()) |
| | | ).collect(Collectors.toList()); |
| | | //获得满足条件的id集合 |
| | | List<String> ids = likeFieldDynamicColumnVOList.stream().map(DynamicColumnVO::getRefStringId).toList(); |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = list.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | Set<String> removeSet = new HashSet<>(ids); |
| | | //移除掉不符合条件的key |
| | | groupByRefStringIdMap.keySet().retainAll(removeSet); |
| | | |
| | | return groupByRefStringIdMap; |
| | | } |
| | | //录像可用 |
| | | @Override |
| | | public void recordingAvailabilityExport(HttpServletResponse response,DataCenterQuery params) throws IOException { |
| | | |
| | | List<String> likeFileds = Arrays.asList("deviceId", "deviceName"); |
| | | Query query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | //下拉框录像情况查询条件 |
| | | if (params.getOption() != null) { |
| | | query.addCriteria(Criteria.where("recordStatus").is(params.getOption())); |
| | | } |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | if (sysDept !=null){ |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query.addCriteria(Criteria.where("no").regex("^" +areaDeptEnum.getCode())); |
| | | } |
| | | } |
| | | MongoUtil.setNoPage(query, params, TIME_FIELD); |
| | | List<RecordMetaDSumResult> resultList = mongoTemplate.find(query, RecordMetaDSumResult.class); |
| | | |
| | | |
| | | |
| | | //翻译行政区域 |
| | | resultList.forEach(item -> { |
| | | String areaCode = item.getArealayername().substring(0, 6); |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromCode(areaCode); |
| | | if (areaDeptEnum != null) item.setArealayername(areaDeptEnum.getName()); |
| | | }); |
| | | //获得动态列数据 |
| | | List<DynamicColumnVO> dynamicColumnVOList = dynamicColumnMapper.getDynamicColumnByTableName(TableNameConstants.COLUMN_NAME_VIDEO); |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | |
| | | //判断是否有查询条件 |
| | | boolean conditions = false; |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = new HashMap<>(); |
| | | if (params.getDyId() != null && StringUtils.isNotEmpty(params.getDyValue())){ |
| | | conditions = true; |
| | | //获得动态列集合中包含了的字符串值的集合 区分大小写 |
| | | |
| | | groupByRefStringIdMap = getDynamicByConditions(params,dynamicColumnVOList); |
| | | }else{ |
| | | groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | } |
| | | //固定表头 |
| | | LinkedHashSet<String> headers = new LinkedHashSet<>(); |
| | | headers.add(RecordingAvailabilityHeaders.arealayername); |
| | |
| | | headersList.addAll(dynamicsHeaders); |
| | | headers.addAll(headersList); |
| | | } |
| | | SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); |
| | | SimpleDateFormat dateFormat2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
| | | |
| | | // SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); |
| | | //查询到有动态列查询条件 |
| | | //获得对应动态列中ref的对象id 与 查询结果id过滤 |
| | | if (conditions){ |
| | | Map<String, List<DynamicColumnVO>> finalGroupByRefStringIdMap = groupByRefStringIdMap; |
| | | resultList = resultList.stream() |
| | | .filter(obj -> finalGroupByRefStringIdMap.containsKey(obj.getId())) |
| | | .collect(Collectors.toList()); |
| | | } |
| | | SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
| | | List<List<Object>> data = new ArrayList<>(); |
| | | for (RecordMetaDSumResult result : resultList){ |
| | | List<Object> row = new ArrayList<>(); |
| | | row.add(result.getArealayername()); |
| | | row.add(result.getArealayerno()); |
| | | row.add(dateFormat2.format(result.getCreateTime())); |
| | | row.add(dateFormat.format(result.getCreateTime())); |
| | | row.add(result.getDeviceId()); |
| | | row.add(result.getMissDuration()); |
| | | row.add(result.getPlatId()); |
| | | row.add(result.getRecordDuration()); |
| | | row.add(result.getRecordStatusText()); |
| | | row.add(dateFormat2.format(result.getCreateTime())); |
| | | row.add(dateFormat.format(result.getCreateTime())); |
| | | //添加动态列数据 |
| | | for (String header : headersList){ |
| | | boolean flag = false; |
| | |
| | | .doWrite(data); // 写入数据 |
| | | } |
| | | |
| | | //点位在线 |
| | | @Override |
| | | public void pointOnlineFaceExport(HttpServletResponse response, DataCenterQuery params) throws IOException { |
| | | |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | if (sysDept !=null){ |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //查人脸设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Face + ".*")); |
| | | //下拉框在线情况查询条件 |
| | |
| | | item.setOffLineTimeStr(offLineTime); |
| | | } |
| | | }); |
| | | |
| | | |
| | | |
| | | List<DynamicColumnVO> dynamicColumnVOList = dynamicColumnMapper.getDynamicColumnByTableName(TableNameConstants.COLUMN_NAME_FACE_POINT); |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | |
| | | |
| | | //判断是否有查询条件 |
| | | boolean conditions = false; |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = new HashMap<>(); |
| | | if (params.getDyId() != null && StringUtils.isNotEmpty(params.getDyValue())){ |
| | | conditions = true; |
| | | //获得动态列集合中包含了的字符串值的集合 区分大小写 |
| | | groupByRefStringIdMap = getDynamicByConditions(params,dynamicColumnVOList); |
| | | }else{ |
| | | groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | } |
| | | |
| | | //固定表头 |
| | | LinkedHashSet<String> headers = new LinkedHashSet<>(); |
| | | headers.add(PointOnlineHeaders.no); |
| | |
| | | //使用链表保证后续补充数据时获取数据顺序一致 |
| | | headersList.addAll(dynamicsHeaders); |
| | | headers.addAll(headersList); |
| | | } |
| | | |
| | | if (conditions){ |
| | | Map<String, List<DynamicColumnVO>> finalGroupByRefStringIdMap = groupByRefStringIdMap; |
| | | resultList = resultList.stream() |
| | | .filter(obj -> finalGroupByRefStringIdMap.containsKey(obj.getNo())) |
| | | .collect(Collectors.toList()); |
| | | } |
| | | |
| | | List<List<Object>> data = new ArrayList<>(); |
| | |
| | | .sheet("人脸点位在线率") // 设置sheet名称 |
| | | .registerWriteHandler(new LongestMatchColumnWidthStyleStrategy()) |
| | | .doWrite(data); // 写入数据 |
| | | } |
| | | |
| | | } private final ISysDeptService deptService; |
| | | |
| | | public SysDept getSysDeptByLoginUser(){ |
| | | LoginUser loginUser = SecurityUtils.getLoginUser(); |
| | | SysDept sysDept = null; |
| | | Long deptId =null; |
| | | if (loginUser.getDeptId() != null){ |
| | | deptId = loginUser.getDeptId(); |
| | | sysDept = deptService.selectDeptById(deptId); |
| | | } |
| | | return sysDept; |
| | | } |
| | | //视频单位在线 |
| | | @Override |
| | | public void pointOnlineVideoExport(HttpServletResponse response, DataCenterQuery params) throws IOException { |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | if (sysDept !=null){ |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | |
| | | //查视频设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | //下拉框在线情况查询条件 |
| | |
| | | } |
| | | }); |
| | | List<DynamicColumnVO> dynamicColumnVOList = dynamicColumnMapper.getDynamicColumnByTableName(TableNameConstants.COLUMN_NAME_VIDEO_POINT); |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | //判断是否有查询条件 |
| | | boolean conditions = false; |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = new HashMap<>(); |
| | | if (params.getDyId() != null && StringUtils.isNotEmpty(params.getDyValue())){ |
| | | conditions = true; |
| | | //获得动态列集合中包含了的字符串值的集合 区分大小写 |
| | | groupByRefStringIdMap = getDynamicByConditions(params,dynamicColumnVOList); |
| | | }else{ |
| | | groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | } |
| | | //固定表头 |
| | | LinkedHashSet<String> headers = new LinkedHashSet<>(); |
| | | headers.add(PointOnlineHeaders.no); |
| | |
| | | //使用链表保证后续补充数据时获取数据顺序一致 |
| | | headersList.addAll(dynamicsHeaders); |
| | | headers.addAll(headersList); |
| | | } |
| | | |
| | | |
| | | if (conditions){ |
| | | Map<String, List<DynamicColumnVO>> finalGroupByRefStringIdMap = groupByRefStringIdMap; |
| | | resultList = resultList.stream() |
| | | .filter(obj -> finalGroupByRefStringIdMap.containsKey(obj.getNo())) |
| | | .collect(Collectors.toList()); |
| | | } |
| | | |
| | | List<List<Object>> data = new ArrayList<>(); |
| | |
| | | |
| | | |
| | | } |
| | | |
| | | //车辆点位在线 |
| | | @Override |
| | | public void pointOnlineCarExport(HttpServletResponse response, DataCenterQuery params) throws IOException { |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | if (sysDept !=null){ |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //查车辆设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Car + ".*")); |
| | | //下拉框在线情况查询条件 |
| | |
| | | } |
| | | }); |
| | | List<DynamicColumnVO> dynamicColumnVOList = dynamicColumnMapper.getDynamicColumnByTableName(TableNameConstants.COLUMN_NAME_CAR_POINT); |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | //判断是否有查询条件 |
| | | boolean conditions = false; |
| | | Map<String,List<DynamicColumnVO>> groupByRefStringIdMap = new HashMap<>(); |
| | | if (params.getDyId() != null && StringUtils.isNotEmpty(params.getDyValue())){ |
| | | conditions = true; |
| | | //获得动态列集合中包含了的字符串值的集合 区分大小写 |
| | | groupByRefStringIdMap = getDynamicByConditions(params,dynamicColumnVOList); |
| | | }else{ |
| | | groupByRefStringIdMap = dynamicColumnVOList.stream().collect(Collectors.groupingBy(DynamicColumnVO::getRefStringId)); |
| | | } |
| | | //固定表头 |
| | | LinkedHashSet<String> headers = new LinkedHashSet<>(); |
| | | headers.add(PointOnlineHeaders.no); |
| | |
| | | //使用链表保证后续补充数据时获取数据顺序一致 |
| | | headersList.addAll(dynamicsHeaders); |
| | | headers.addAll(headersList); |
| | | } |
| | | |
| | | |
| | | if (conditions){ |
| | | Map<String, List<DynamicColumnVO>> finalGroupByRefStringIdMap = groupByRefStringIdMap; |
| | | resultList = resultList.stream() |
| | | .filter(obj -> finalGroupByRefStringIdMap.containsKey(obj.getNo())) |
| | | .collect(Collectors.toList()); |
| | | } |
| | | |
| | | List<List<Object>> data = new ArrayList<>(); |
| | |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 视频:点位在线率 |
| | | * |
| | |
| | | @Override |
| | | public Result videoPointOnlineRate(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | //此处新增了根据用户权限查询的情况 |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //查视频设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | //下拉框在线情况查询条件 |
| | |
| | | // 添加固定条件 |
| | | criteriaList.add(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | criteriaList.add(Criteria.where("mongoCreateTime").gte(params.getStartTime()).lte(params.getEndTime())); |
| | | //此处新增了根据用户权限查询的情况 |
| | | if (areaDeptEnum != null){ |
| | | criteriaList.add(Criteria.where("no").regex("^" +areaDeptEnum.getCode())); |
| | | } |
| | | // 根据dataType动态添加条件 |
| | | if (params.getDataType() == 1) { |
| | | criteriaList.add(Criteria.where("provinceTag").is(Boolean.TRUE)); |
| | |
| | | @Override |
| | | public Result deptVideoPointOnlineRate(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | //此处新增了根据用户权限查询的情况 |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //查视频设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | query.addCriteria(Criteria.where("deptTag").is(Boolean.TRUE)); |
| | |
| | | int unknownCount = 0; |
| | | //构建条件 |
| | | List<Criteria> criteriaList = new ArrayList<>(); |
| | | //此处新增了根据用户权限查询的情况 |
| | | if (areaDeptEnum != null){ |
| | | criteriaList.add(Criteria.where("no").regex("^" +areaDeptEnum.getCode())); |
| | | } |
| | | // 添加固定条件 |
| | | criteriaList.add(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | criteriaList.add(Criteria.where("mongoCreateTime").gte(params.getStartTime()).lte(params.getEndTime())); |
| | |
| | | @Override |
| | | public Result videoImportantPointOnlineRate(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | //此处新增了根据用户权限查询的情况 |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //查视频设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | query.addCriteria(Criteria.where("importantTag").is(Boolean.TRUE)); |
| | |
| | | int unknownCount = 0; |
| | | //构建条件 |
| | | List<Criteria> criteriaList = new ArrayList<>(); |
| | | //此处新增了根据用户权限查询的情况 |
| | | if (areaDeptEnum != null){ |
| | | criteriaList.add(Criteria.where("no").regex("^" +areaDeptEnum.getCode())); |
| | | } |
| | | // 添加固定条件 |
| | | criteriaList.add(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | criteriaList.add(Criteria.where("mongoCreateTime").gte(params.getStartTime()).lte(params.getEndTime())); |
| | |
| | | @Override |
| | | public Result videoImportantPointImageOnlineRate(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | //此处新增了根据用户权限查询的情况 |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //查视频设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | query.addCriteria(Criteria.where("importantCommandImageTag").is(Boolean.TRUE)); |
| | |
| | | int unknownCount = 0; |
| | | //构建条件 |
| | | List<Criteria> criteriaList = new ArrayList<>(); |
| | | //此处新增了根据用户权限查询的情况 |
| | | if (areaDeptEnum != null){ |
| | | criteriaList.add(Criteria.where("no").regex("^" +areaDeptEnum.getCode())); |
| | | } |
| | | // 添加固定条件 |
| | | criteriaList.add(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Video + ".*")); |
| | | criteriaList.add(Criteria.where("mongoCreateTime").gte(params.getStartTime()).lte(params.getEndTime())); |
| | |
| | | @Override |
| | | public Result videoOneMachineDocumentRegister(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("ip.showValue", "name.showValue", "serialNumber.showValue"); |
| | | List<Criteria> andCriteria = MongoUtil.getAndCriteria(params, TIME_FIELD, likeFileds, null); |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | List<Criteria> andCriteria; |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept != null) { |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null) { |
| | | andCriteria = MongoUtil.getAndCriteriaDateCenter(areaDeptEnum.getCode(),params, TIME_FIELD, likeFileds, null); |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | Query query = new Query(); |
| | | Criteria and = new Criteria(); |
| | | if (params.getOption() != null) { |
| | |
| | | // 统计数量 |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("uy_monitor_qualify"); |
| | | Document areDocument = null; |
| | | if (areaDeptEnum != null) { |
| | | String areaCodePrefix = areaDeptEnum.getCode(); |
| | | areDocument = new Document("deviceNo", new Document("$regex", "^" + areaCodePrefix)); |
| | | } |
| | | //总数 |
| | | List<Document> dList1 = new ArrayList<>(2); |
| | | if(areDocument != null){ |
| | | dList1.add(areDocument); |
| | | } |
| | | setTag(params, dList1); |
| | | Document totalFilter = new Document("$and", dList1); |
| | | //新设备数 |
| | | List<Document> dList2 = new ArrayList<>(2); |
| | | if(areDocument != null){ |
| | | dList1.add(areDocument); |
| | | } |
| | | setTag(params, dList2); |
| | | dList2.add(new Document("newDevice", Boolean.TRUE)); |
| | | Document newFilter = new Document("$and", dList2); |
| | |
| | | @Override |
| | | public Result videoOneMachineDocumentQualified(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("ip.showValue", "name.showValue", "serialNumber.showValue"); |
| | | List<Criteria> andCriteria = MongoUtil.getAndCriteria(params, TIME_FIELD, likeFileds, null); |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | List<Criteria> andCriteria; |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept != null) { |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null) { |
| | | andCriteria = MongoUtil.getAndCriteriaDateCenter(areaDeptEnum.getCode(),params, TIME_FIELD, likeFileds, null); |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | |
| | | Query query = new Query(); |
| | | Criteria and = new Criteria(); |
| | | and.andOperator(andCriteria); |
| | |
| | | // 统计数量 |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("uy_monitor_qualify"); |
| | | Document areDocument = null; |
| | | if (areaDeptEnum != null) { |
| | | String areaCodePrefix = areaDeptEnum.getCode(); |
| | | areDocument = new Document("deviceNo", new Document("$regex", "^" + areaCodePrefix)); |
| | | } |
| | | //总数 |
| | | List<Document> dList1 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList1.add(areDocument); |
| | | } |
| | | setTag(params, dList1); |
| | | Document totalFilter = new Document("$and", dList1); |
| | | //list1 |
| | | |
| | | //合格数 |
| | | List<Document> dList2 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList2.add(areDocument); |
| | | } |
| | | dList2.add(new Document("serialNumber.error", Boolean.FALSE)); |
| | | dList2.add(new Document("name.error", Boolean.FALSE)); |
| | | dList2.add(new Document("civilCode.error", Boolean.FALSE)); |
| | |
| | | Document qualifyFilter = new Document("$and", dList2); |
| | | //不合格数 |
| | | List<Document> dList3 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList3.add(areDocument); |
| | | } |
| | | setTag(params, dList3); |
| | | List<Document> errorConditions = new ArrayList<>(); |
| | | errorConditions.add(new Document("serialNumber.error", new Document("$eq", Boolean.TRUE))); |
| | |
| | | } |
| | | |
| | | private final ISysConfigService configService; |
| | | |
| | | public double getSySMinTime(){ |
| | | //获取系统参数 |
| | | String dictLabel = configService.selectConfigByKey("recording_min_time"); |
| | | double recordingMinTime; |
| | | try { |
| | | recordingMinTime = Double.parseDouble(dictLabel) / 60; // 如果 dictLabel 是以小时为单位,则无需除以 60 |
| | | } catch (Exception e) { |
| | | log.error("配置的删除时间范围格式不正确: {}", dictLabel, e); |
| | | return 12.0; // 默认 12 小时(以小时为单位) |
| | | } |
| | | |
| | | return recordingMinTime; |
| | | } |
| | | private final TMonitorMapper tMonitorMapper; |
| | | |
| | | /** |
| | | * 视频:录像可用率 |
| | | * |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | |
| | | public Result videoAvailabilityRate(DataCenterQuery params) { |
| | | //获取系统参数 |
| | | String dictLabel = configService.selectConfigByKey("recording_min_time"); |
| | | |
| | | double recordingMinTime; |
| | | try { |
| | | recordingMinTime = Double.parseDouble(dictLabel) / 60; // 如果 dictLabel 是以小时为单位,则无需除以 60 |
| | | } catch (Exception e) { |
| | | log.error("配置的删除时间范围格式不正确: {}", dictLabel, e); |
| | | recordingMinTime = 12.0; // 默认 12 小时(以小时为单位) |
| | | List<String> noString = tMonitorMapper.getIdListVideo(); |
| | | List<String> likeFileds = Arrays.asList("deviceId", "deviceName"); |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | Query query = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,"createTime",likeFileds,null,"no"); |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | } |
| | | |
| | | List<String> likeFileds = Arrays.asList("deviceId", "deviceName"); |
| | | Query query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | if (CollectionUtils.isNotEmpty(noString)) { // 防止空集合异常 |
| | | query.addCriteria(Criteria.where("no").in(noString)); |
| | | } |
| | | //下拉框录像情况查询条件 |
| | | if (params.getOption() != null) { |
| | | query.addCriteria(Criteria.where("recordStatus").is(params.getOption())); |
| | |
| | | //翻译行政区域 |
| | | resultList.forEach(item -> { |
| | | String areaCode = item.getArealayername().substring(0, 6); |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromCode(areaCode); |
| | | if (areaDeptEnum != null) item.setArealayername(areaDeptEnum.getName()); |
| | | AreaDeptEnum areaDeptEnumInfo = AreaDeptEnum.fromCode(areaCode); |
| | | if (areaDeptEnumInfo != null) item.setArealayername(areaDeptEnumInfo.getName()); |
| | | |
| | | List<DynamicColumnVO> list = dynamicColumnMapper.getDynamicColumnByTable(TableNameConstants.COLUMN_NAME_VIDEO,item.getId()); |
| | | item.setDynamicColumnList(list); |
| | | |
| | | }); |
| | | // 统计数量 |
| | | |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("uy_record_meta_d_sum"); |
| | | List<Integer> status = Arrays.asList(1, 0, -1); |
| | | AreaDeptEnum finalAreaDeptEnum = areaDeptEnum; |
| | | List<String> resultCount = status.stream().map(item -> { |
| | | List<Document> dList = new ArrayList<>(2); |
| | | |
| | | dList.add(new Document("recordStatus", new Document("$eq", item))); |
| | | if(finalAreaDeptEnum != null){ |
| | | dList.add(new Document("$and", Arrays.asList( |
| | | new Document("no", new Document("$in", noString)), |
| | | new Document("no", new Document("$regex", "^" + finalAreaDeptEnum.getCode())) |
| | | ))); |
| | | }else { |
| | | dList.add(new Document("no", new Document("$in", noString))); |
| | | } |
| | | |
| | | setTag(params, dList); |
| | | Document filter = new Document("$and", dList); |
| | | // 构建聚合管道 |
| | |
| | | MongoDatabase databaes2 = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection2 = databaes2.getCollection("uy_record_meta_d_sum"); |
| | | |
| | | double finalRecordingMinTime = recordingMinTime; |
| | | double finalRecordingMinTime = getSySMinTime(); |
| | | |
| | | List<Document> documentList = new ArrayList<>(3); |
| | | List<Document> documentList = new ArrayList<>(2); |
| | | if(finalAreaDeptEnum != null){ |
| | | documentList.add(new Document("$and", Arrays.asList( |
| | | new Document("no", new Document("$in", noString)), |
| | | new Document("no", new Document("$regex", "^" + finalAreaDeptEnum.getCode())) |
| | | ))); |
| | | }else { |
| | | documentList.add(new Document("no", new Document("$in", noString))); |
| | | } |
| | | // documentList.add(new Document("$and", Arrays.asList( |
| | | // new Document("no", new Document("$in", noString)), |
| | | // new Document("no", new Document("$regex", "^" + finalAreaDeptEnum.getCode())) |
| | | // ))); |
| | | setTag(params, documentList); |
| | | Document recording = new Document("recordDuration",new Document("$gte", finalRecordingMinTime)); |
| | | Document recording = new Document("missDuration",new Document("$lte", finalRecordingMinTime)); |
| | | documentList.add(recording); |
| | | |
| | | Document filter = new Document("$and", documentList); |
| | | // 构建聚合管道 |
| | | List<Document> pipeline = Arrays.asList( |
| | |
| | | new Document("$count", "uniqueDeviceIds") |
| | | ); |
| | | AggregateIterable<Document> result = collection2.aggregate(pipeline); |
| | | |
| | | |
| | | Integer uniqueDeviceIdCount = 0; |
| | | for (Document doc : result) { |
| | | uniqueDeviceIdCount = doc.getInteger("uniqueDeviceIds"); |
| | | break; // 不需要继续遍历,因为 $count 只会产生一个结果 |
| | | } |
| | | log.error("打印:{}",uniqueDeviceIdCount); |
| | | // List<CheckIndexVideo> videoList = new LambdaQueryChainWrapper<>(checkIndexVideoService.getBaseMapper()) |
| | | // .select(CheckIndexVideo::getVideoAvailable) |
| | | // .eq(params.getDataType().equals(1), CheckIndexVideo::getExamineTag, CheckConstants.Examine_Tag_Province) |
| | | // .eq(params.getDataType().equals(2), CheckIndexVideo::getExamineTag, CheckConstants.Examine_Tag_Dept) |
| | | // .between(CheckIndexVideo::getCreateTime, DateUtils.getDayStart(params.getStartTime()), DateUtils.getDayEnd(params.getEndTime())) |
| | | // .list(); |
| | | // BigDecimal onlineRate = BigDecimal.ZERO; |
| | | // if (CollectionUtils.isNotEmpty(videoList)) { |
| | | // BigDecimal sum = videoList.stream().map(CheckIndexVideo::getVideoAvailable).reduce(BigDecimal.ZERO, BigDecimal::add); |
| | | // BigDecimal count = BigDecimal.valueOf(videoList.size()); |
| | | // onlineRate = sum.divide(count, 4, RoundingMode.HALF_UP).multiply(BigDecimal.valueOf(100)); |
| | | // } |
| | | //加一个总数 |
| | | log.error("录像可用率打印:{}",uniqueDeviceIdCount); |
| | | int totalCount = 0; |
| | | for (String s : resultCount) { |
| | | totalCount += Integer.parseInt(s); |
| | |
| | | BigDecimal onlineRate = BigDecimal.ZERO; |
| | | // 1:完整 0:间歇 -1:异常 | |
| | | if (!StringUtils.isEmpty(resultCount.get(0)) && !"0".equals(resultCount.get(0))) { |
| | | //resultCount.get(0) |
| | | onlineRate = new BigDecimal(resultCount.get(1)).divide(new BigDecimal(uniqueDeviceIdCount), 3,RoundingMode.DOWN).multiply(new BigDecimal("100")); |
| | | //resultCount.get(0)是总数 uniqueDeviceIdCount是更具系统参数查询到mongodb中大于等于 recordDuration字段的总数 |
| | | onlineRate = new BigDecimal(uniqueDeviceIdCount).divide(new BigDecimal(resultCount.get(0)), 3,RoundingMode.DOWN).multiply(new BigDecimal("100")); |
| | | } |
| | | resultCount.add(this.remove0(onlineRate)); |
| | | |
| | |
| | | @Override |
| | | public Result deptVideoAvailabilityRate(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("deviceId", "deviceName"); |
| | | Query query = MongoUtil.getQuery(params, "createTime", likeFileds, 1); |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | Query query = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,"createTime",likeFileds,null,"no"); |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | } |
| | | //下拉框录像情况查询条件 |
| | | if (params.getOption() != null) { |
| | | query.addCriteria(Criteria.where("recordStatus").is(params.getOption())); |
| | |
| | | //翻译行政区域 |
| | | resultList.forEach(item -> { |
| | | String areaCode = item.getArealayername().substring(0, 6); |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromCode(areaCode); |
| | | if (areaDeptEnum != null) item.setArealayername(areaDeptEnum.getName()); |
| | | AreaDeptEnum areaDeptEnumInfo = AreaDeptEnum.fromCode(areaCode); |
| | | if (areaDeptEnumInfo != null) item.setArealayername(areaDeptEnumInfo.getName()); |
| | | }); |
| | | // 统计数量 |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("uy_record_meta_d_sum"); |
| | | List<Integer> status = Arrays.asList(1, 0, -1); |
| | | AreaDeptEnum finalAreaDeptEnum = areaDeptEnum; |
| | | List<String> resultCount = status.stream().map(item -> { |
| | | List<Document> dList = new ArrayList<>(4); |
| | | dList.add(new Document("deptTag", new Document("$eq", Boolean.TRUE))); |
| | | dList.add(new Document("recordStatus", new Document("$eq", item))); |
| | | setTag(params, dList); |
| | | if (finalAreaDeptEnum != null){ |
| | | dList.add(new Document("$and", Arrays.asList( |
| | | // new Document("no", new Document("$in", noString)), |
| | | new Document("no", new Document("$regex", "^" + finalAreaDeptEnum.getCode())) |
| | | ))); |
| | | } |
| | | Document filter = new Document("$and", dList); |
| | | // 构建聚合管道 |
| | | List<Document> pipeline = Arrays.asList( |
| | |
| | | } |
| | | return uniqueDeviceIdCount + ""; |
| | | }).collect(Collectors.toList()); |
| | | |
| | | |
| | | //计算部级录像可用率 |
| | | MongoDatabase database2 = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection2 = database2.getCollection("uy_record_meta_d_sum"); |
| | | double finalRecordingMinTime = getSySMinTime(); |
| | | |
| | | List<Document> documentList = new ArrayList<>(4); |
| | | documentList.add(new Document("deptTag", new Document("$eq", Boolean.TRUE))); |
| | | setTag(params, documentList); |
| | | Document recording = new Document("missDuration",new Document("$lte", finalRecordingMinTime)); |
| | | documentList.add(recording); |
| | | if (finalAreaDeptEnum != null){ |
| | | documentList.add(new Document("$and", Arrays.asList( |
| | | // new Document("no", new Document("$in", noString)), |
| | | new Document("no", new Document("$regex", "^" + finalAreaDeptEnum.getCode())) |
| | | ))); |
| | | } |
| | | Document filter = new Document("$and", documentList); |
| | | // 构建聚合管道 |
| | | List<Document> pipeline = Arrays.asList( |
| | | new Document("$match", filter), |
| | | // $group 去重 |
| | | new Document("$group", new Document("_id", "$deviceId")), |
| | | new Document("$count", "uniqueDeviceIds") |
| | | ); |
| | | AggregateIterable<Document> result = collection2.aggregate(pipeline); |
| | | Integer uniqueDeviceIdCount = 0; |
| | | for (Document doc : result) { |
| | | uniqueDeviceIdCount = doc.getInteger("uniqueDeviceIds"); |
| | | break; // 不需要继续遍历,因为 $count 只会产生一个结果 |
| | | } |
| | | log.error("部级录像可用率{}:",uniqueDeviceIdCount); |
| | | |
| | | |
| | | |
| | | // List<CheckIndexVideo> videoList = new LambdaQueryChainWrapper<>(checkIndexVideoService.getBaseMapper()) |
| | | // .select(CheckIndexVideo::getMinistryVideoAvailable) |
| | |
| | | resultCount.add(0, totalCount + ""); |
| | | BigDecimal onlineRate = BigDecimal.ZERO; |
| | | if (!StringUtils.isEmpty(resultCount.get(0)) && !"0".equals(resultCount.get(0))) { |
| | | onlineRate = new BigDecimal(resultCount.get(1)).divide(new BigDecimal(resultCount.get(0)), 3,RoundingMode.DOWN).multiply(new BigDecimal("100")); |
| | | onlineRate = new BigDecimal(uniqueDeviceIdCount).divide(new BigDecimal(resultCount.get(0)), 3,RoundingMode.DOWN).multiply(new BigDecimal("100")); |
| | | } |
| | | resultCount.add(this.remove0(onlineRate)); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | |
| | | @Override |
| | | public Result videoImportantPointAvailabilityRate(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("deviceId", "deviceName"); |
| | | Query query = MongoUtil.getQuery(params, "createTime", likeFileds, 3); |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | Query query = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,"createTime",likeFileds,null,"no"); |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, "createTime", likeFileds, null); |
| | | } |
| | | query.addCriteria(Criteria.where("importantTag").is(Boolean.TRUE)); |
| | | //下拉框录像情况查询条件 |
| | | if (params.getOption() != null) { |
| | | query.addCriteria(Criteria.where("recordStatus").is(params.getOption())); |
| | |
| | | //翻译行政区域 |
| | | resultList.forEach(item -> { |
| | | String areaCode = item.getArealayername().substring(0, 6); |
| | | AreaDeptEnum areaDeptEnum = AreaDeptEnum.fromCode(areaCode); |
| | | if (areaDeptEnum != null) item.setArealayername(areaDeptEnum.getName()); |
| | | AreaDeptEnum areaDeptEnumInfo = AreaDeptEnum.fromCode(areaCode); |
| | | if (areaDeptEnumInfo != null) item.setArealayername(areaDeptEnumInfo.getName()); |
| | | }); |
| | | // 统计数量 |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("uy_record_meta_d_sum"); |
| | | List<Integer> status = Arrays.asList(1, 0, -1); |
| | | AreaDeptEnum finalAreaDeptEnum = areaDeptEnum; |
| | | List<String> resultCount = status.stream().map(item -> { |
| | | List<Document> dList = new ArrayList<>(4); |
| | | dList.add(new Document("importantTag", new Document("$eq", Boolean.TRUE))); |
| | | dList.add(new Document("recordStatus", new Document("$eq", item))); |
| | | setTag(params, dList); |
| | | if (finalAreaDeptEnum != null){ |
| | | dList.add(new Document("$and", Arrays.asList( |
| | | // new Document("no", new Document("$in", noString)), |
| | | new Document("no", new Document("$regex", "^" + finalAreaDeptEnum.getCode())) |
| | | ))); |
| | | } |
| | | Document filter = new Document("$and", dList); |
| | | // 构建聚合管道 |
| | | List<Document> pipeline = Arrays.asList( |
| | |
| | | } |
| | | return uniqueDeviceIdCount + ""; |
| | | }).collect(Collectors.toList()); |
| | | |
| | | //计算重点点位录像可用率 |
| | | MongoDatabase database2 = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection2 = database2.getCollection("uy_record_meta_d_sum"); |
| | | double finalRecordingMinTime = getSySMinTime(); |
| | | |
| | | List<Document> documentList = new ArrayList<>(4); |
| | | documentList.add(new Document("importantTag", new Document("$eq", Boolean.TRUE))); |
| | | setTag(params, documentList); |
| | | Document recording = new Document("missDuration",new Document("$lte", finalRecordingMinTime)); |
| | | documentList.add(recording); |
| | | if (finalAreaDeptEnum != null){ |
| | | documentList.add(new Document("$and", Arrays.asList( |
| | | // new Document("no", new Document("$in", noString)), |
| | | new Document("no", new Document("$regex", "^" + finalAreaDeptEnum.getCode())) |
| | | ))); |
| | | } |
| | | Document filter = new Document("$and", documentList); |
| | | // 构建聚合管道 |
| | | List<Document> pipeline = Arrays.asList( |
| | | new Document("$match", filter), |
| | | // $group 去重 |
| | | new Document("$group", new Document("_id", "$deviceId")), |
| | | new Document("$count", "uniqueDeviceIds") |
| | | ); |
| | | AggregateIterable<Document> result = collection2.aggregate(pipeline); |
| | | Integer uniqueDeviceIdCount = 0; |
| | | for (Document doc : result) { |
| | | uniqueDeviceIdCount = doc.getInteger("uniqueDeviceIds"); |
| | | break; // 不需要继续遍历,因为 $count 只会产生一个结果 |
| | | } |
| | | log.error("重点点位录像可用率{}:",uniqueDeviceIdCount); |
| | | |
| | | // List<CheckIndexVideo> videoList = new LambdaQueryChainWrapper<>(checkIndexVideoService.getBaseMapper()) |
| | | // .select(CheckIndexVideo::getKeyVideoAvailable) |
| | |
| | | resultCount.add(0, totalCount + ""); |
| | | BigDecimal onlineRate = BigDecimal.ZERO; |
| | | if (!StringUtils.isEmpty(resultCount.get(0)) && !"0".equals(resultCount.get(0))) { |
| | | onlineRate = new BigDecimal(resultCount.get(1)).divide(new BigDecimal(resultCount.get(0)), 3,RoundingMode.DOWN).multiply(new BigDecimal("100")); |
| | | onlineRate = new BigDecimal(uniqueDeviceIdCount).divide(new BigDecimal(resultCount.get(0)), 3,RoundingMode.DOWN).multiply(new BigDecimal("100")); |
| | | } |
| | | resultCount.add(this.remove0(onlineRate)); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | |
| | | |
| | | long total = mongoTemplate.count(query, RecordMetaDSumResult.class); |
| | | List<RecordMetaDSumResult> resultList = mongoTemplate.find(query, RecordMetaDSumResult.class); |
| | | Query nonNetworkQuery; |
| | | Query networkQuery; |
| | | Query videoQuery; |
| | | Query carQuery; |
| | | Query faceQuery; |
| | | // if (areaDeptEnum == null){ |
| | | nonNetworkQuery = new Query().addCriteria(Criteria.where("LWSX").is("0")); |
| | | networkQuery = new Query().addCriteria(Criteria.where("LWSX").is("1")); |
| | | videoQuery = new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*1.*")); |
| | | carQuery = new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*2.*")); |
| | | faceQuery = new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*3.*")); |
| | | // } |
| | | // else { |
| | | // nonNetworkQuery = new Query().addCriteria(Criteria.where("LWSX").is("0")).addCriteria(Criteria.where("no").regex("^" + Pattern.quote(areaDeptEnum.getCode()))); |
| | | // networkQuery = new Query().addCriteria(Criteria.where("LWSX").is("1")).addCriteria(Criteria.where("no").regex("^" + Pattern.quote(areaDeptEnum.getCode()))); |
| | | // videoQuery = new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*1.*")).addCriteria(Criteria.where("no").regex("^" + Pattern.quote(areaDeptEnum.getCode()))); |
| | | // carQuery = new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*2.*")).addCriteria(Criteria.where("no").regex("^" + Pattern.quote(areaDeptEnum.getCode()))); |
| | | // faceQuery = new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*3.*")).addCriteria(Criteria.where("no").regex("^" + Pattern.quote(areaDeptEnum.getCode()))); |
| | | // } |
| | | |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), RecordMetaDSumResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), RecordMetaDSumResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*1.*")), RecordMetaDSumResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*2.*")), RecordMetaDSumResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex(".*3.*")), RecordMetaDSumResult.class); |
| | | long nonNetwork = mongoTemplate.count(nonNetworkQuery, RecordMetaDSumResult.class); |
| | | long network = mongoTemplate.count(networkQuery, RecordMetaDSumResult.class); |
| | | long video = mongoTemplate.count(videoQuery, RecordMetaDSumResult.class); |
| | | long car = mongoTemplate.count(carQuery, RecordMetaDSumResult.class); |
| | | long face = mongoTemplate.count(faceQuery, RecordMetaDSumResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | |
| | | @Override |
| | | public Result videoImportantPointLabelingAccuracy(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("deviceNo", "osdName"); |
| | | List<Criteria> andCriteria = MongoUtil.getAndCriteria(params, "checkTime", likeFileds, null); |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | List<Criteria> andCriteria; |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept != null) { |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null) { |
| | | andCriteria = MongoUtil.getAndCriteriaDateCenter(areaDeptEnum.getCode(),params, "checkTime", likeFileds, null); |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, "checkTime", likeFileds, null); |
| | | } |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, "checkTime", likeFileds, null); |
| | | } |
| | | |
| | | Query query = new Query(); |
| | | Criteria and = new Criteria(); |
| | | and.andOperator(andCriteria); |
| | | query = Query.query(and); |
| | | //下拉框标注正确查询条件 |
| | | query.addCriteria(Criteria.where("importantTag").is(Boolean.TRUE)); |
| | | // 下拉框标注正确查询条件 |
| | | if (params.getOption() != null) { |
| | | if (params.getOption() == 1) { |
| | | andCriteria.add(Criteria.where("osdNameCorrect").is(1)); |
| | |
| | | // 统计数量 |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("osd_check_result"); |
| | | //总数 |
| | | // 确保在统计查询中也应用相同的过滤条件 |
| | | Document areDocument = null; |
| | | if (areaDeptEnum != null) { |
| | | String areaCodePrefix = areaDeptEnum.getCode(); |
| | | areDocument = new Document("deviceNo", new Document("$regex", "^" + areaCodePrefix)); |
| | | } |
| | | // 总数 |
| | | List<Document> dList = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList.add(areDocument); |
| | | } |
| | | dList.add(new Document("importantTag", Boolean.TRUE)); |
| | | setTag(params, dList); |
| | | |
| | | Document osdFilter = new Document("$and", dList); |
| | | //正常数 |
| | | // 正常数 |
| | | List<Document> dList1 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList1.add(areDocument); |
| | | } |
| | | dList1.add(new Document("importantTag", Boolean.TRUE)); |
| | | dList1.add(new Document("osdNameCorrect", new Document("$eq", 1))); |
| | | dList1.add(new Document("osdTimeCorrect", new Document("$eq", 1))); |
| | |
| | | dList1.add(new Document("osdCityCorrect", new Document("$eq", 1))); |
| | | dList1.add(new Document("osdPartCorrect", new Document("$eq", 1))); |
| | | setTag(params, dList1); |
| | | |
| | | Document osdCorrectFilter = new Document("$and", dList1); |
| | | //异常数 |
| | | List<Document> dList2 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList2.add(areDocument); |
| | | } |
| | | setTag(params, dList2); |
| | | Document importantTagCondition = new Document("importantTag", Boolean.TRUE); |
| | | dList2.add(importantTagCondition); |
| | |
| | | errorConditions.add(new Document("osdPartCorrect", new Document("$eq", -1))); |
| | | Document errorFilter = new Document("$or", errorConditions); |
| | | dList2.add(errorFilter); |
| | | |
| | | Document osdErrorFilter = new Document("$and", dList2); |
| | | //未知数 |
| | | |
| | | // 未知数 |
| | | List<Document> dList3 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList3.add(areDocument); |
| | | } |
| | | setTag(params, dList3); |
| | | dList3.add(importantTagCondition); |
| | | List<Document> unknownConditions = new ArrayList<>(); |
| | |
| | | unknownConditions.add(new Document("osdProvinceCorrect", new Document("$eq", 0))); |
| | | unknownConditions.add(new Document("osdCityCorrect", new Document("$eq", 0))); |
| | | unknownConditions.add(new Document("osdPartCorrect", new Document("$eq", 0))); |
| | | // 使用$or逻辑组合剩余的条件 |
| | | Document unknownFilter = new Document("$or", unknownConditions); |
| | | dList3.add(unknownFilter); |
| | | |
| | | Document osdUnknownFilter = new Document("$and", dList3); |
| | | |
| | | List<Document> lists = Arrays.asList(osdFilter, osdCorrectFilter, osdErrorFilter, osdUnknownFilter); |
| | |
| | | return uniqueDeviceIdCount + ""; |
| | | }).collect(Collectors.toList()); |
| | | |
| | | // List<CheckIndexVideo> videoList = new LambdaQueryChainWrapper<>(checkIndexVideoService.getBaseMapper()) |
| | | // .select(CheckIndexVideo::getKeyAnnotationAccuracy) |
| | | // .eq(params.getDataType().equals(1), CheckIndexVideo::getExamineTag, CheckConstants.Examine_Tag_Province) |
| | | // .eq(params.getDataType().equals(2), CheckIndexVideo::getExamineTag, CheckConstants.Examine_Tag_Dept) |
| | | // .between(CheckIndexVideo::getCreateTime, DateUtils.getDayStart(params.getStartTime()), DateUtils.getDayEnd(params.getEndTime())) |
| | | // .list(); |
| | | // BigDecimal onlineRate = BigDecimal.ZERO; |
| | | // if (CollectionUtils.isNotEmpty(videoList)) { |
| | | // BigDecimal sum = videoList.stream().map(CheckIndexVideo::getKeyAnnotationAccuracy).reduce(BigDecimal.ZERO, BigDecimal::add); |
| | | // BigDecimal count = BigDecimal.valueOf(videoList.size()); |
| | | // onlineRate = sum.divide(count, 4, RoundingMode.HALF_UP).multiply(BigDecimal.valueOf(100)); |
| | | // } |
| | | BigDecimal onlineRate = BigDecimal.ZERO; |
| | | if (!StringUtils.isEmpty(rList.get(0)) && !"0".equals(rList.get(0))) { |
| | | onlineRate = new BigDecimal(rList.get(1)).divide(new BigDecimal(rList.get(0)), 3,RoundingMode.DOWN).multiply(new BigDecimal("100")); |
| | |
| | | @Override |
| | | public Result videoImportantPointCheckTimeAccuracy(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("deviceNo", "osdName"); |
| | | Query query = MongoUtil.getQuery(params, "checkTime", likeFileds, null); |
| | | |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | List<Criteria> andCriteria; |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept != null) { |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null) { |
| | | andCriteria = MongoUtil.getAndCriteriaDateCenter(areaDeptEnum.getCode(),params, "checkTime", likeFileds, null); |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, "checkTime", likeFileds, null); |
| | | } |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, "checkTime", likeFileds, null); |
| | | } |
| | | Query query = new Query(); |
| | | Criteria and = new Criteria(); |
| | | and.andOperator(andCriteria); |
| | | query = Query.query(and); |
| | | query.addCriteria(Criteria.where("importantTag").is(Boolean.TRUE)); |
| | | //下拉框标注正确查询条件 |
| | | if (params.getOption() != null) { |
| | | if (params.getOption() == 1) { |
| | |
| | | long total = mongoTemplate.count(query, OsdCheckResult.class); |
| | | MongoUtil.setPage(query, params, "checkTime"); |
| | | List<OsdCheckResult> resultList = mongoTemplate.find(query, OsdCheckResult.class); |
| | | Document areDocument = null; |
| | | if (areaDeptEnum != null) { |
| | | String areaCodePrefix = areaDeptEnum.getCode(); |
| | | areDocument = new Document("deviceNo", new Document("$regex", "^" + areaCodePrefix)); |
| | | } |
| | | |
| | | for (OsdCheckResult osdCheckResult : resultList) { |
| | | OsdCheckResult.getError(osdCheckResult); |
| | |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("osd_check_result"); |
| | | //总数 |
| | | List<Document> dList = new ArrayList<>(2); |
| | | List<Document> dList = new ArrayList<>(3); |
| | | if (areDocument != null){ |
| | | dList.add(areDocument); |
| | | } |
| | | dList.add(new Document("importantTag", Boolean.TRUE)); |
| | | setTag(params, dList); |
| | | Document osdFilter = new Document("$and", dList); |
| | |
| | | dList1.add(new Document("osdProvinceCorrect", new Document("$eq", 1))); |
| | | dList1.add(new Document("osdCityCorrect", new Document("$eq", 1))); |
| | | dList1.add(new Document("osdPartCorrect", new Document("$eq", 1))); |
| | | if (areDocument != null){ |
| | | dList1.add(areDocument); |
| | | } |
| | | setTag(params, dList1); |
| | | Document osdCorrectFilter = new Document("$and", dList1); |
| | | //异常数 |
| | | List<Document> dList2 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList2.add(areDocument); |
| | | } |
| | | setTag(params, dList2); |
| | | Document importantTagCondition = new Document("importantTag", Boolean.TRUE); |
| | | dList2.add(importantTagCondition); |
| | |
| | | Document osdErrorFilter = new Document("$and", dList2); |
| | | //未知数 |
| | | List<Document> dList3 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList3.add(areDocument); |
| | | } |
| | | setTag(params, dList3); |
| | | dList3.add(importantTagCondition); |
| | | List<Document> unknownConditions = new ArrayList<>(); |
| | |
| | | @Override |
| | | public Result vehicleViewDockStable(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("externalIndexCode", "deviceName"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //加DataType为车辆 |
| | | query.addCriteria(Criteria.where("dataType").is(ApiConstants.HK_DataType_CAR)); |
| | | if (params.getOption() != null) { |
| | |
| | | MongoUtil.setPage(query, params, TIME_FIELD); |
| | | List<SnapshotDataMonitorResult> resultList = mongoTemplate.find(query, SnapshotDataMonitorResult.class); |
| | | resultList.forEach(item -> item.setResultTypeText(item.getResultTypeText())); |
| | | Document areDocument = null; |
| | | if (areaDeptEnum != null) { |
| | | String areaCodePrefix = areaDeptEnum.getCode(); |
| | | areDocument = new Document("deviceNo", new Document("$regex", "^" + areaCodePrefix)); |
| | | } |
| | | // 统计数量 |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("hk_snapshot_data_monitor"); |
| | | |
| | | List<Document> dList2 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList2.add(areDocument); |
| | | } |
| | | dList2.add(new Document("resultType", new Document("$eq", 1))); |
| | | dList2.add(new Document("dataType", new Document("$eq", ApiConstants.HK_DataType_CAR))); |
| | | setTag(params, dList2); |
| | | |
| | | List<Document> dList3 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList3.add(areDocument); |
| | | } |
| | | dList3.add(new Document("resultType", new Document("$eq", 2))); |
| | | dList3.add(new Document("dataType", new Document("$eq", ApiConstants.HK_DataType_CAR))); |
| | | setTag(params, dList3); |
| | | List<Document> dList4 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList4.add(areDocument); |
| | | } |
| | | dList4.add(new Document("resultType", new Document("$eq", 3))); |
| | | dList4.add(new Document("dataType", new Document("$eq", ApiConstants.HK_DataType_CAR))); |
| | | setTag(params, dList4); |
| | | List<Document> dList5 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList5.add(areDocument); |
| | | } |
| | | dList5.add(new Document("resultType", new Document("$eq", 4))); |
| | | dList5.add(new Document("dataType", new Document("$eq", ApiConstants.HK_DataType_CAR))); |
| | | setTag(params, dList5); |
| | |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | public Query buildQuery(DataCenterQuery params,List<String> likeFileds,String fileName){ |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | return query; |
| | | } |
| | | |
| | | /** |
| | | * 车辆:点位在线率 |
| | | * |
| | |
| | | @Override |
| | | public Result vehiclePointOnlineRate(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("name", "no", "ip"); |
| | | Query query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | Query query = null; |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept !=null){ |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null){ |
| | | query = MongoUtil.getQueryDataCenter(areaDeptEnum.getCode(),params,TIME_FIELD,likeFileds,null,"no"); |
| | | |
| | | }else{ |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | }else { |
| | | query = MongoUtil.getQuery(params, TIME_FIELD, likeFileds, null); |
| | | } |
| | | //查车辆设备 |
| | | query.addCriteria(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Car + ".*")); |
| | | //下拉框在线情况查询条件 |
| | |
| | | int unknownCount = 0; |
| | | //构建条件 |
| | | List<Criteria> criteriaList = new ArrayList<>(); |
| | | if (areaDeptEnum != null){ |
| | | criteriaList.add(Criteria.where("no").regex("^" +areaDeptEnum.getCode())); |
| | | } |
| | | // 添加固定条件 |
| | | criteriaList.add(Criteria.where("monitorType").regex(".*" + CheckConstants.Rule_Category_Car + ".*")); |
| | | criteriaList.add(Criteria.where("mongoCreateTime").gte(params.getStartTime()).lte(params.getEndTime())); |
| | |
| | | @Override |
| | | public Result vehicleNetDeviceDirectoryConsistency(DataCenterQuery params) { |
| | | List<String> likeFileds = Arrays.asList("ip.showValue", "name.showValue", "serialNumber.showValue"); |
| | | List<Criteria> andCriteria = MongoUtil.getAndCriteria(params, TIME_FIELD, likeFileds, null); |
| | | SysDept sysDept = getSysDeptByLoginUser(); |
| | | List<Criteria> andCriteria; |
| | | AreaDeptEnum areaDeptEnum = null; |
| | | if (sysDept != null) { |
| | | areaDeptEnum = AreaDeptEnum.fromDept(Math.toIntExact(sysDept.getDeptId())); |
| | | if (areaDeptEnum != null) { |
| | | andCriteria = MongoUtil.getAndCriteriaDateCenter(areaDeptEnum.getCode(),params, "checkTime", likeFileds, null); |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, "checkTime", likeFileds, null); |
| | | } |
| | | }else { |
| | | andCriteria = MongoUtil.getAndCriteria(params, "checkTime", likeFileds, null); |
| | | } |
| | | // 1/2/3 视频/车辆/人脸 |
| | | Pattern pattern = Pattern.compile(".*2.*"); |
| | | andCriteria.add(Criteria.where("sxjgnlx.value").regex(pattern)); |
| | |
| | | //统计数量 |
| | | MongoDatabase database = mongoTemplate.getDb(); |
| | | MongoCollection<Document> collection = database.getCollection("uy_monitor_qualify"); |
| | | Document areDocument = null; |
| | | if (areaDeptEnum != null) { |
| | | String areaCodePrefix = areaDeptEnum.getCode(); |
| | | areDocument = new Document("no", new Document("$regex", "^" + areaCodePrefix)); |
| | | } |
| | | |
| | | //总数 |
| | | List<Document> dList1 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList1.add(areDocument); |
| | | } |
| | | setTag(params, dList1); |
| | | dList1.add(new Document("sxjgnlx.value", new Document("$regex", ".*2.*"))); |
| | | Document totalFilter = new Document("$and", dList1); |
| | | //新设备数 |
| | | List<Document> dList2 = new ArrayList<>(2); |
| | | if (areDocument != null){ |
| | | dList2.add(areDocument); |
| | | } |
| | | setTag(params, dList2); |
| | | dList2.add(new Document("sxjgnlx.value", new Document("$regex", ".*2.*"))); |
| | | dList2.add(new Document("newDevice", Boolean.TRUE)); |