From f423e1277f91427f0a767bd1224c1260dcb73086 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期一, 20 四月 2026 22:47:54 +0800
Subject: [PATCH] feat: 添加空箱入库功能及相关优化

---
 Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/RobotJob/Abstractions/IRobotMessageRouter.cs |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/RobotJob/Abstractions/IRobotMessageRouter.cs b/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/RobotJob/Abstractions/IRobotMessageRouter.cs
index d7fd293..195a0aa 100644
--- a/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/RobotJob/Abstractions/IRobotMessageRouter.cs
+++ b/Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/RobotJob/Abstractions/IRobotMessageRouter.cs
@@ -1,13 +1,21 @@
 using System.Net.Sockets;
+using WIDESEAWCS_Model.Models;
 
 namespace WIDESEAWCS_Tasks.Workflow.Abstractions
 {
     /// <summary>
-    /// 机器人消息路由入口。用于承接 TcpSocketServer 的消息事件。
+    /// 鏈哄櫒浜烘秷鎭矾鐢辨帴鍙� - 璐熻矗鎺ユ敹鏉ヨ嚜 TcpSocketServer 鐨勬秷鎭苟鍒嗗彂缁欏悎閫傜殑澶勭悊鍣�
     /// </summary>
     public interface IRobotMessageRouter
     {
-        Task<string?> HandleMessageReceivedAsync(string message, bool isJson, TcpClient client, RobotSocketState state);
+        /// <summary>
+        /// 澶勭悊鎺ユ敹鍒扮殑娑堟伅
+        /// </summary>
+        /// <param name="message">鍘熷娑堟伅瀛楃涓�</param>
+        /// <param name="isJson">娑堟伅鏄惁涓� JSON 鏍煎紡</param>
+        /// <param name="client">TCP 瀹㈡埛绔繛鎺�</param>
+        /// <param name="state">鏈哄櫒浜哄綋鍓嶇姸鎬�</param>
+        /// <returns>鍝嶅簲娑堟伅锛屽鏋滄棤闇�鍥炲鍒欒繑鍥� null</returns>
+        Task<string?> HandleMessageReceivedAsync(string message, bool isJson, TcpClient client);
     }
 }
-

--
Gitblit v1.9.3