From 78db852d39b8d13e39521f76b24d9f7d80737fcc Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期日, 05 四月 2026 23:32:46 +0800
Subject: [PATCH] #缓存数据清理

---
 src/main/java/com/zy/core/thread/StationThread.java |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/zy/core/thread/StationThread.java b/src/main/java/com/zy/core/thread/StationThread.java
index c1ca9d4..9193988 100644
--- a/src/main/java/com/zy/core/thread/StationThread.java
+++ b/src/main/java/com/zy/core/thread/StationThread.java
@@ -14,6 +14,10 @@
 
     Map<Integer, StationProtocol> getStatusMap();
 
+    default boolean hasRecentArrival(Integer stationId, Integer taskNo) {
+        return false;
+    }
+
     StationCommand getCommand(StationCommandType commandType, Integer taskNo, Integer stationId, Integer targetStationId, Integer palletSize);
 
     default StationCommand getCommand(StationCommandType commandType,
@@ -42,6 +46,10 @@
 
     boolean clearPath(Integer taskNo);
 
+    default boolean clearPathByStationSlot(Integer stationId, Integer slotIdx) {
+        return false;
+    }
+
     CommandResponse sendCommand(StationCommand command);
 
     CommandResponse sendOriginCommand(String address, short[] data);

--
Gitblit v1.9.1