From eff4c14d88d9240f908dfd7f482f87b2a92f9d0c Mon Sep 17 00:00:00 2001 From: hudong <Administrator@PC-20250329JZUF> Date: 星期二, 10 六月 2025 17:15:35 +0800 Subject: [PATCH] 1其他出入庫接口代码超时优化 2.领料单接口优化 3.任务状态类型修改 4.空旷出入库逻辑优化 --- api/ApiModel.cs | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/api/ApiModel.cs b/api/ApiModel.cs index dc31677..0c80903 100644 --- a/api/ApiModel.cs +++ b/api/ApiModel.cs @@ -28,6 +28,7 @@ { public int State { get; set; } public string No { get; set; } + public string ForkliftNo { get; set; } public string ErrCode { get; set; } public string LockNo { get; set; } @@ -102,7 +103,18 @@ public string resultMsg { get; set; } public List<object> result { get; set; } = new List<object>(); } + /// <summary> + /// mobox 鎺ュ彛杩斿洖 + /// </summary> + public class SimpleResults + { + public int resultCode { get; set; } + public string WLPZBH { get; set; } + public string WLPZND { get; set; } + public string resultMsg { get; set; } + public List<object> result { get; set; } = new List<object>(); + } /// <summary> /// 娴嬭瘯鎺ユ敹 /// </summary> @@ -339,6 +351,7 @@ /// </summary> public class MPSorting { + public string cntr_type { get; set; } public string cntr_code { get; set; } public string start { get; set; } @@ -358,6 +371,7 @@ public class KtSorting { public string cntr_code { get; set; }//瀹瑰櫒 + public string item_code { get; set; } public string start { get; set; }//瀹瑰櫒 public int? Type { get; set; } @@ -369,6 +383,7 @@ public class FJSorting { public string cntr_code { get; set; }//瀹瑰櫒 + public string cntr_type { get; set; }//瀹瑰櫒 public string start { get; set; }//瀹瑰櫒 public bool IsHK { get; set; }//瀹瑰櫒 @@ -644,8 +659,14 @@ public class WcRkDto { public string GZRY { get;set;} public string S_NO { get;set;} + public List<Wl> Wlist { get; set; } } + public class Wl { + public string S_ITEM_CODE{ get; set; } + public string N_ROW_NO{ get; set; } + + } #endregion } -- Gitblit v1.9.1