From 647095a34d62db02533cf9c121436900b51c757c Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期二, 15 十月 2024 15:07:13 +0800 Subject: [PATCH] update --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorResumeCallable.java | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorResumeCallable.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorResumeCallable.java index f53bc10..8d5198b 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorResumeCallable.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorResumeCallable.java @@ -7,13 +7,13 @@ public class BedDoctorResumeCallable implements Callable<ErrorCode> { - QueueService queueService; + QueueServiceTxFunctions queueService; private Long roomId; private String bedNo; private Long docId; private String docName; - public BedDoctorResumeCallable(QueueService queueService, Long roomId, String bedNo, Long docId, String docName) + public BedDoctorResumeCallable(QueueServiceTxFunctions queueService, Long roomId, String bedNo, Long docId, String docName) { super(); this.queueService = queueService; @@ -26,9 +26,10 @@ public ErrorCode call() throws Exception { ErrorCode ec = queueService.bedDoctorResume(roomId, bedNo, docId, docName); if (GlobalErrorCodeConstants.SUCCESS.equals(ec)) { - queueService.hurryup(); + queueService.hurryupOneBed(roomId, bedNo); } + queueService.monitorInfo(); return ec; } -- Gitblit v1.9.3