From 26784989e73fc36c6315e54939d1b13a50eb5020 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期四, 26 三月 2026 21:03:00 +0800
Subject: [PATCH] #

---
 src/main/java/com/zy/core/thread/StationThread.java |   26 ++++++++++++++++++++++++++
 1 files changed, 26 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 011083c..c1ca9d4 100644
--- a/src/main/java/com/zy/core/thread/StationThread.java
+++ b/src/main/java/com/zy/core/thread/StationThread.java
@@ -16,6 +16,32 @@
 
     StationCommand getCommand(StationCommandType commandType, Integer taskNo, Integer stationId, Integer targetStationId, Integer palletSize);
 
+    default StationCommand getCommand(StationCommandType commandType,
+                                      Integer taskNo,
+                                      Integer stationId,
+                                      Integer targetStationId,
+                                      Integer palletSize,
+                                      Double pathLenFactor) {
+        return getCommand(commandType, taskNo, stationId, targetStationId, palletSize);
+    }
+
+    default StationCommand getRunBlockRerouteCommand(Integer taskNo,
+                                                     Integer stationId,
+                                                     Integer targetStationId,
+                                                     Integer palletSize) {
+        return getCommand(StationCommandType.MOVE, taskNo, stationId, targetStationId, palletSize);
+    }
+
+    default StationCommand getRunBlockRerouteCommand(Integer taskNo,
+                                                     Integer stationId,
+                                                     Integer targetStationId,
+                                                     Integer palletSize,
+                                                     Double pathLenFactor) {
+        return getCommand(StationCommandType.MOVE, taskNo, stationId, targetStationId, palletSize, pathLenFactor);
+    }
+
+    boolean clearPath(Integer taskNo);
+
     CommandResponse sendCommand(StationCommand command);
 
     CommandResponse sendOriginCommand(String address, short[] data);

--
Gitblit v1.9.1