From 7e62c03740217ab71ed26abaeb5a4241c3e01359 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期三, 18 九月 2024 10:26:55 +0800
Subject: [PATCH] update

---
 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/queueController.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/queueController.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/queueController.java
index 5997673..68d7ce2 100644
--- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/queueController.java
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/queueController.java
@@ -110,9 +110,10 @@
     @PreAuthorize("@ss.hasPermission('ecg:queue:bedcontrol')")
     public CommonResult<Integer> bedOpen(
         @RequestParam("roomId") Long roomId,
+        @RequestParam("roomName") String roomName,
         @RequestParam("bedNo") String bedNo)
     {
-        ErrorCode result = queueService.startBedOpen(roomId, bedNo);
+        ErrorCode result = queueService.startBedOpen(roomId, roomName, bedNo);
         if (result.equals(SUCCESS))
             return success(0);
 

--
Gitblit v1.9.3