From b1b98bdda00a94cada2035293d6bcad10bec0578 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期三, 09 四月 2025 07:59:38 +0800
Subject: [PATCH] just refactor - rename

---
 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedBO.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/RoutingBedBO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedBO.java
similarity index 82%
rename from jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/RoutingBedBO.java
rename to jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedBO.java
index f509d04..97fe8bf 100644
--- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/RoutingBedBO.java
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedBO.java
@@ -6,7 +6,7 @@
 import java.util.concurrent.atomic.AtomicInteger;
 
 @Data
-public class RoutingBedBO implements Comparable<RoutingBedBO> {
+public class BedBO implements Comparable<BedBO> {
     String bedNo;
     Long roomId;
     String roomName;
@@ -21,7 +21,7 @@
     Integer opType;
 
     @Override
-    public int compareTo(@NotNull RoutingBedBO o) {
+    public int compareTo(@NotNull BedBO o) {
         return Integer.compare(this.readyPatNum.get(), o.readyPatNum.get());
     }
 }

--
Gitblit v1.9.3