From 5efc3d1d1042ac74e7319fb04e490dd7295b9e22 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期四, 07 八月 2025 16:20:35 +0800
Subject: [PATCH] 优化 WMS 接口请求和设备处理逻辑 在 `RequestInbound.cs` 中删除与 GW 相关的代码注释,添加 WMS 接口请求处理,更新 `RequestWmsTask` 方法以支持异步请求和结果处理。 在 `CommonConveyorLine_CWJob.cs` 中移除不必要的代码,简化设备处理逻辑,并增加调度执行时间记录,改进异常处理输出。 在 `CommonStackerCraneJob.cs` 中将设备类型转换从 `CommonConveyorLine_GW` 更新为 `CommonConveyorLine_CW`,确保任务处理的正确性。

---
 Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResponeAgingInputDto.cs |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResponeAgingInputDto.cs b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResponeAgingInputDto.cs
index 5881e68..f2f7358 100644
--- a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResponeAgingInputDto.cs
+++ b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResponeAgingInputDto.cs
@@ -40,5 +40,55 @@
         /// 鍗曚綅
         /// </summary>
         public string UomCode { get; set; }
+
+        public List<ParameterInfo> ParameterInfos { get; set; }
+    }
+
+    public class ParameterInfo
+    {
+        /// <summary>
+        /// 鍙傛暟绫诲瀷灞炴�э紝瀵瑰簲 "ParameterType"
+        /// </summary>
+        public string ParameterType { get; set; }
+        /// <summary>
+        /// 鐩爣鍊煎睘鎬э紝瀵瑰簲 "TargetValue"
+        /// </summary>
+        public string TargetValue { get; set; }
+        /// <summary>
+        /// 鍗曚綅浠g爜灞炴�э紝瀵瑰簲 "UOMCode"
+        /// </summary>
+        public string UOMCode { get; set; }
+        /// <summary>
+        /// 涓婃帶鍒堕檺灞炴�э紝瀵瑰簲 "UpperControlLimit"
+        /// </summary>
+        public string UpperControlLimit { get; set; }
+        /// <summary>
+        /// 涓嬫帶鍒堕檺灞炴�э紝瀵瑰簲 "LowerControlLimit"
+        /// </summary>
+        public string LowerControlLimit { get; set; }
+        /// <summary>
+        /// 涓婅鏍奸檺灞炴�э紝瀵瑰簲 "UpperSpecificationsLimit"
+        /// </summary>
+        public string UpperSpecificationsLimit { get; set; }
+        /// <summary>
+        /// 涓嬭鏍奸檺灞炴�э紝瀵瑰簲 "LowerSpecificationsLimit"
+        /// </summary>
+        public string LowerSpecificationsLimit { get; set; }
+        /// <summary>
+        /// 璁惧鍙敤鎬ф爣蹇楀睘鎬э紝瀵瑰簲 "EquipmentAvailabilityFlag"
+        /// </summary>
+        public bool EquipmentAvailabilityFlag { get; set; }
+        /// <summary>
+        /// 鎻忚堪灞炴�э紝瀵瑰簲 "Description"
+        /// </summary>
+        public string Description { get; set; }
+        /// <summary>
+        /// 鍙傛暟鐗堟湰灞炴�э紝瀵瑰簲 "ParamVersion"
+        /// </summary>
+        public string ParamVersion { get; set; }
+        /// <summary>
+        /// 鍙傛暟浠g爜灞炴�э紝瀵瑰簲 "ParameterCode"
+        /// </summary>
+        public string ParameterCode { get; set; }
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3