|  |  | 
 |  |  | package cn.lihu.jh.module.ecg.controller.admin.room.vo; | 
 |  |  |  | 
 |  |  | import cn.lihu.jh.module.ecg.service.queue.BedQueueBO; | 
 |  |  | import cn.lihu.jh.module.ecg.service.queue.BedBO; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | import java.util.Map; | 
 |  |  | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | public class MonitorInfoVO { | 
 |  |  |     private Integer queueNum; | 
 |  |  |     private Integer activeQueueNum; | 
 |  |  |     private Integer priorityQueueNum; | 
 |  |  |     private Integer openingBedNum; | 
 |  |  |     private Integer docBedNum; | 
 |  |  |     private Integer routingBedNum; | 
 |  |  |     private Integer openingFlag; | 
 |  |  |     private Map<Integer, String> checkTypeBedInfo; | 
 |  |  |     private ConcurrentHashMap<String, BedQueueBO> mapBedVsQueue; | 
 |  |  |     private ConcurrentHashMap<String, BedBO> mapBedVsQueue; | 
 |  |  | } |