eight
2024-09-18 a165b1d7c2ef8ef65d1d87fb99c9ec687a31ee47
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);