From c3e27cb2e84782e99a30cc5a6e8caa67ca0cb72f Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期三, 25 九月 2024 17:33:32 +0800 Subject: [PATCH] 医生登出,自动离座,自动从暂停恢复 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorOnCallable.java | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorOnCallable.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorOnCallable.java index 09ed183..41d8d4b 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorOnCallable.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorOnCallable.java @@ -23,7 +23,10 @@ } public ErrorCode call() throws Exception { - return queueService.bedDoctorOn(roomId, bedNo, docId, docName); + ErrorCode ec = queueService.bedDoctorOn(roomId, bedNo, docId, docName); + + queueService.monitorInfo(); + return ec; } } -- Gitblit v1.9.3