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