| | |
| | | |
| | | Map<Integer, Map<Integer, List<ScreenQueueRespVO>>> mapVO = new HashMap<>(); |
| | | map.keySet().forEach( displayCol -> { |
| | | log.info("dispayCol: " + displayCol); |
| | | //log.info("dispayCol: " + displayCol); |
| | | Map<Integer, List<QueueDO>> mapSoltQueueDO = map.get(displayCol); |
| | | Map<Integer, List<ScreenQueueRespVO>> mapSoltQueueVO = new HashMap<>(); |
| | | mapSoltQueueDO.keySet().forEach( displaySlot -> { |
| | | log.info("displaySlot: " + displaySlot); |
| | | //log.info("displaySlot: " + displaySlot); |
| | | mapSoltQueueVO.put(displaySlot, BeanUtils.toBean(mapSoltQueueDO.get(displaySlot), ScreenQueueRespVO.class)); |
| | | }); |
| | | |