文件名从 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/RoutingBedBO.java 修改 |
| | |
| | | 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; |
| | |
| | | Integer opType; |
| | | |
| | | @Override |
| | | public int compareTo(@NotNull RoutingBedBO o) { |
| | | public int compareTo(@NotNull BedBO o) { |
| | | return Integer.compare(this.readyPatNum.get(), o.readyPatNum.get()); |
| | | } |
| | | } |