eight
2024-08-26 ca64d931ce30254e34d64ce28cf3a53e54a9159f
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/queueService.java
@@ -14,6 +14,9 @@
 */
public interface QueueService {
    void startBiz();
    void closeBiz();
    /**
     * 创建排队
     *
@@ -35,6 +38,11 @@
     * @param id 编号
     */
    void deletequeue(Integer id);
    /**
     *
     */
    Integer bedControl(Long roomId, String bedNo, Integer status);
    /**
     * 获得排队
@@ -59,16 +67,6 @@
    void queue(QueueSaveReqVO queueSaveReqVO);
    /**
     *
     */
    void initQueue();
    /**
     * 开诊前一刻,对 就诊准备的 人员 重新排序
     */
    void reorderQueue();
    /**
     * 把医生候诊的队列塞满
     */
    void hurryup();
@@ -86,4 +84,8 @@
    List<QueueDO> getDoctorQueueByStatus(Long roomId, String bedNo, List<Byte> statusList);
    PatientStatisticVO getPatientStatistic(Long roomId, String bedNo);
    Integer recallPatient(Long roomId, String bedNo, String patId);
    Integer patientJump(String patId, Byte jumped );
}