sinake
6 天以前 66fd4f82f8567454d0b93cfe6e519801857d156a
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/QueueService.java
@@ -40,6 +40,13 @@
    void updatequeue(@Valid QueueSaveReqVO updateReqVO);
    /**
     * 更新停诊
     *
     * @param
     */
    void updateStop(long roomId,String bedNo);
    /**
     * 删除排队
     *
     * @param id 编号
@@ -47,7 +54,7 @@
    void deletequeue(Integer id);
    /**
     *
     * 一个工位 可能支持多个检查类型,
     */
    void startHurryUpOneBed(Long roomId, String bedNo);
    void startHurryUpOneCheckType(Integer checkType);
@@ -89,6 +96,8 @@
     */
    void queue(QueueSaveReqVO queueSaveReqVO);
    List<QueueDO> selectBookSeqNumByAppointIdList(List<Long> appointIdList);
    /**
     * 常规检查 医生叫下一位患者
     */
@@ -103,6 +112,11 @@
     * 装机 医生叫下一位患者
     */
    void finishInstallNextPatient(Long roomId, String bedNo);
    /**
     * 过号排队中患者
     */
    void passWaitingPatient( String patId, Integer bookCheckType );
    /**
     * 常规过号、领用过号
@@ -124,15 +138,17 @@
    PatientStatisticVO getBedDevInstallStatistic(Long roomId, String bedNo);
    Integer recallPatient(Long roomId, String bedNo, String patId);
    Integer recallPassWaitingPatient(String patId, Integer checkType);
    Integer recallInstallPatient(Long roomId, String bedNo, String patId);
    Integer recallPatient(Long roomId, String bedNo, String patId, Integer checkType);
    Integer patientJump(String patId, Byte jumped );
    Integer recallInstallPatient(Long roomId, String bedNo, String patId, Integer checkType, Long roomId_operator, String bedNo_operator);
    RoomDO getDocRoomInfo(Long docId);
    Integer patientJump(String patId, Integer bookCheckType, Byte jumped );
    List<QueueDO> getToBeCheckedPatient(Long roomId, String bedNo);
    List<RoomDO> getDocRoomInfo(Long docId);
    List<QueueDO> getToBeInstalledPatient(Long roomId, String bedNo);
    List<QueueDO> getCheckRelatedPatient(Long roomId, String bedNo);
    List<QueueDO> getInstallRelatedPatient(Long roomId, String bedNo);
}