| | |
| | | public MonitorInfoVO getMonitorInfo() { |
| | | MonitorInfoVO monitorInfoVO = new MonitorInfoVO(); |
| | | monitorInfoVO.setOpeningFlag( openingFlag.get() ); |
| | | String[] arrStatInfo = roomBedStatistic(); |
| | | monitorInfoVO.setOpeningInfo(arrStatInfo[0]); |
| | | monitorInfoVO.setOperatingInfo(arrStatInfo[1]); |
| | | roomBedStatistic(monitorInfoVO); |
| | | |
| | | return monitorInfoVO; |
| | | } |
| | | |
| | | public void monitorInfo() { |
| | | String[] arrStatInfo = roomBedStatistic(); |
| | | log.info(" opening " + openingFlag.get() + " openingInfo " + arrStatInfo[0] + " operatingInfo " + arrStatInfo[1] ); |
| | | MonitorInfoVO monitorInfoVO = new MonitorInfoVO(); |
| | | roomBedStatistic(monitorInfoVO); |
| | | log.info(" opening " + openingFlag.get() + " " + monitorInfoVO.getQueueNum() + " " + monitorInfoVO.getActiveQueueNum() + " " + monitorInfoVO.getCheckTypeBedInfo().toString() ); |
| | | } |
| | | |
| | | private Integer getBedReadyMax(Long roomId, String bedNo) { |
| | |
| | | }); |
| | | } |
| | | |
| | | private String[] roomBedStatistic() { |
| | | private void roomBedStatistic(MonitorInfoVO monitorInfoVO) { |
| | | Map<Integer, Integer> mapOpeningCheckBedStatInfo = new HashMap<>(); |
| | | Map<Integer, Integer> mapOpeningReadyBedStatInfo = new HashMap<>(); |
| | | Map<Integer, Integer> mapOperatingCheckBedStatInfo = new HashMap<>(); |
| | |
| | | }); |
| | | }); |
| | | |
| | | String openingBedInfo = "总数:" + mapBedVsQueue.size() + " 检查工位数: " + mapOpeningCheckBedStatInfo.toString() + " 领用工位数: " + mapOpeningReadyBedStatInfo.toString(); |
| | | |
| | | //运营中工位统计 |
| | | HashSet<BedQueueBO> hashSetOperatingBedQueue = new HashSet<>(); |
| | | mapCheckTypeVsPriorityQueue.values().forEach(priorityQueue->{ |
| | |
| | | }); |
| | | }); |
| | | |
| | | String operatingBedInfo = "总数:" + hashSetOperatingBedQueue.size() + " 检查工位数: " + mapOperatingCheckBedStatInfo.toString() + " 领用工位数: " + mapOperatingReadyBedStatInfo.toString(); |
| | | Map<Integer, String> mapCheckTypeBedInfo = new HashMap<>(); |
| | | mapCheckTypeVsReadyMax.keySet().forEach( checkType -> { |
| | | String str = mapOpeningCheckBedStatInfo.get(checkType) + " " + |
| | | mapOpeningReadyBedStatInfo.get(checkType) + " " + |
| | | mapOperatingCheckBedStatInfo.get(checkType) + " " + |
| | | mapOperatingReadyBedStatInfo.get(checkType) + " "; |
| | | mapCheckTypeBedInfo.put( checkType, str); |
| | | }); |
| | | |
| | | return new String[]{openingBedInfo, operatingBedInfo}; |
| | | monitorInfoVO.setCheckTypeBedInfo(mapCheckTypeBedInfo); |
| | | monitorInfoVO.setQueueNum(mapBedVsQueue.size()); |
| | | monitorInfoVO.setActiveQueueNum(hashSetOperatingBedQueue.size()); |
| | | } |
| | | |
| | | } |