From 5171d3f59b89389bf75293afd210cfa6de4ccff7 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期五, 10 四月 2026 23:03:49 +0800
Subject: [PATCH] feat: 添加堆垛机相关常量类并重构代码使用常量

---
 Code/WMS/WIDESEA_WMSServer/WIDESEA_Common/Constants/OutboundTimeConstants.cs |   44 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 44 insertions(+), 0 deletions(-)

diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_Common/Constants/OutboundTimeConstants.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Common/Constants/OutboundTimeConstants.cs
new file mode 100644
index 0000000..625e140
--- /dev/null
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Common/Constants/OutboundTimeConstants.cs
@@ -0,0 +1,44 @@
+namespace WIDESEA_Common.Constants
+{
+    /// <summary>
+    /// 搴撳瓨Remark璺敱鏍囪甯搁噺
+    /// </summary>
+    public static class StockRemarkConstants
+    {
+        /// <summary>
+        /// 楂樻俯1鍙疯矾鐢辨爣璁�
+        /// </summary>
+        public const string GW1 = "GW_1";
+
+        /// <summary>
+        /// 楂樻俯2鍙疯矾鐢辨爣璁�
+        /// </summary>
+        public const string GW2 = "GW_2";
+
+        /// <summary>
+        /// 甯告俯1鍙疯矾鐢辨爣璁�
+        /// </summary>
+        public const string CW1 = "CW_1";
+    }
+
+    /// <summary>
+    /// 鍑哄簱鏃舵晥甯搁噺锛堝皬鏃讹級
+    /// </summary>
+    public static class OutboundTimeConstants
+    {
+        /// <summary>
+        /// GW_1棣栨斁鍏ュ簱鏃舵晥锛�16灏忔椂锛�
+        /// </summary>
+        public const int OUTBOUND_HOURS_GW1_FIRST = 16;
+
+        /// <summary>
+        /// GW_1浜屾斁鍏ュ簱鏃舵晥锛�24灏忔椂锛�
+        /// </summary>
+        public const int OUTBOUND_HOURS_GW1_SECOND = 24;
+
+        /// <summary>
+        /// CW_1鍑哄簱鏃舵晥锛�12灏忔椂锛�
+        /// </summary>
+        public const int OUTBOUND_HOURS_CW1 = 12;
+    }
+}

--
Gitblit v1.9.3