From 3474dd8db7f654f0a9e1d55a1d404c4ca43f78fb Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期二, 01 四月 2025 12:20:13 +0800
Subject: [PATCH] update ReadME
---
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