| | |
| | | |
| | | import cn.hutool.extra.servlet.ServletUtil; |
| | | import cn.lihu.jh.framework.common.pojo.CommonResult; |
| | | import cn.lihu.jh.framework.common.pojo.PageResult; |
| | | import cn.lihu.jh.framework.common.util.object.BeanUtils; |
| | | import cn.lihu.jh.module.ecg.controller.admin.checktype.vo.CheckTypePageReqVO; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.checktype.CheckTypeDO; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.queue.QueueDO; |
| | | import cn.lihu.jh.module.ecg.enums.QueueStatusEnum; |
| | | import cn.lihu.jh.module.ecg.service.callingscreen.CallingScreenService; |
| | | import cn.lihu.jh.module.ecg.service.checktype.CheckTypeService; |
| | | import cn.lihu.jh.module.ecg.service.config.EcgConfigService; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import static cn.lihu.jh.framework.common.pojo.CommonResult.error; |
| | | import static cn.lihu.jh.framework.common.pojo.CommonResult.success; |
| | |
| | | @RestController |
| | | @RequestMapping("/ecg/screen") |
| | | @Validated |
| | | @Slf4j |
| | | public class CallingScreenController { |
| | | |
| | | @Resource |
| | | private CallingScreenService callingScreenService; |
| | | |
| | | @Resource |
| | | private EcgConfigService ecgConfigService; |
| | | @GetMapping("/display-col-info") |
| | | @Operation(summary = "显示列信息") |
| | | @PermitAll |
| | | public CommonResult<Map<Integer, List<String>>> displayColInfo() |
| | | { |
| | | Map<Integer, List<String>> map = callingScreenService.getDisplayColInfo(); |
| | | return success( map ); |
| | | } |
| | | |
| | | @GetMapping("/big-screen-data") |
| | | @Operation(summary = "大屏叫号数据") |
| | | @PermitAll |
| | | public CommonResult<Map<Integer, List<ScreenQueueRespVO>>> callingData() |
| | | public CommonResult<Map<Integer, Map<Integer, List<ScreenQueueRespVO>>>> callingData() |
| | | { |
| | | Map<Integer, List<QueueDO>> map = callingScreenService.callingData(); |
| | | Map<Integer, Map<Integer, List<QueueDO>>> map = callingScreenService.callingData(); |
| | | |
| | | Map<Integer, List<ScreenQueueRespVO>> mapVO = new HashMap<>(); |
| | | map.keySet().forEach( key -> { |
| | | mapVO.put(key, BeanUtils.toBean(map.get(key), ScreenQueueRespVO.class)); |
| | | Map<Integer, Map<Integer, List<ScreenQueueRespVO>>> mapVO = new HashMap<>(); |
| | | map.keySet().forEach( 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); |
| | | mapSoltQueueVO.put(displaySlot, BeanUtils.toBean(mapSoltQueueDO.get(displaySlot), ScreenQueueRespVO.class)); |
| | | }); |
| | | |
| | | mapVO.put(displayCol, mapSoltQueueVO); |
| | | }); |
| | | |
| | | return success( mapVO ); |
| | |
| | | { |
| | | String reqIp = ServletUtil.getClientIP(request); |
| | | |
| | | List<Byte> queueStatusList = new ArrayList<>(); |
| | | List<Integer> queueStatusList = new ArrayList<>(); |
| | | queueStatusList.add(QueueStatusEnum.RECALLED.getStatus()); |
| | | queueStatusList.add(QueueStatusEnum.RECALLED_INSTALL.getStatus()); |
| | | queueStatusList.add(QueueStatusEnum.READY.getStatus()); |
| | | queueStatusList.add(QueueStatusEnum.ONSTAGE.getStatus()); |
| | | queueStatusList.add(QueueStatusEnum.RECEIVED.getStatus()); |
| | | queueStatusList.add(QueueStatusEnum.INSTALLING.getStatus()); |
| | | queueStatusList.add(QueueStatusEnum.PASSED.getStatus()); |
| | | queueStatusList.add(QueueStatusEnum.PASSED_INSTALL.getStatus()); |