| | |
| | | package cn.lihu.jh.module.ecg.service.callingscreen; |
| | | |
| | | import cn.lihu.jh.framework.common.exception.ErrorCode; |
| | | import cn.lihu.jh.framework.common.pojo.CommonResult; |
| | | import cn.lihu.jh.framework.common.pojo.PageResult; |
| | | import cn.lihu.jh.module.ecg.controller.admin.queue.vo.PatientStatisticVO; |
| | | import cn.lihu.jh.module.ecg.controller.admin.queue.vo.QueuePageReqVO; |
| | | import cn.lihu.jh.module.ecg.controller.admin.queue.vo.QueueSaveReqVO; |
| | | import cn.lihu.jh.module.ecg.controller.admin.room.vo.MonitorInfoVO; |
| | | import cn.lihu.jh.module.ecg.controller.admin.room.vo.RoomRespVO; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.queue.QueueDO; |
| | | |
| | | import javax.validation.Valid; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 排队 Service 接口 |
| | | * 叫号屏 Service 接口 |
| | | * |
| | | * @author 芋道源码 |
| | | */ |
| | |
| | | |
| | | void setBigScreenConfig(BigScreenConfig bigScreenConfig); |
| | | |
| | | Map<Integer, List<QueueDO>> callingData(); |
| | | Map<Integer, List<String>> getDisplayColInfo(); |
| | | Map<Integer, List<QueueDO>> getBigScreenPatient(); |
| | | |
| | | List<QueueDO> getRoomQueue(String ip, List<Byte> statusList); |
| | | |
| | | ErrorCode markCalled(String patientId); |
| | | List<QueueDO> getRoomCheckRelatedPatient(String ip, Long roomId); |
| | | List<QueueDO> getRoomInstallRelatedPatient(String ip, Long roomId); |
| | | } |