| | |
| | | */ |
| | | public interface QueueService { |
| | | |
| | | final static Integer MAX_QUEUE_NUM = 3; |
| | | |
| | | void startBiz(); |
| | | void closeBiz(); |
| | | |
| | |
| | | /** |
| | | * |
| | | */ |
| | | Integer bedControl(Long roomId, String bedNo, Integer status); |
| | | Integer startBedOpen(Long roomId, String bedNo); |
| | | Integer startBedClose(Long roomId, String bedNo); |
| | | Integer startBedDoctorPause(Long roomId, String bedNo, Long docId, String docName); |
| | | Integer startBedDoctorOn(Long roomId, String bedNo, Long docId, String docName); |
| | | Integer startBedDoctorOff(Long roomId, String bedNo, Long docId, String docName); |
| | | |
| | | Integer bedOpen(Long roomId, String bedNo); |
| | | Integer bedClose(Long roomId, String bedNo); |
| | | Integer bedDoctorPause(Long roomId, String bedNo, Long docId, String docName); |
| | | Integer bedDoctorOn(Long roomId, String bedNo, Long docId, String docName); |
| | | Integer bedDoctorOff(Long roomId, String bedNo, Long docId, String docName); |
| | | |
| | | /** |
| | | * 获得排队 |