eight
2025-04-09 b1b98bdda00a94cada2035293d6bcad10bec0578
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedBO.java
文件名从 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/RoutingBedBO.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());
    }
}