From a165b1d7c2ef8ef65d1d87fb99c9ec687a31ee47 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期三, 18 九月 2024 10:28:01 +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