From fbc97814a609c708fd5edda5e0e0526001416143 Mon Sep 17 00:00:00 2001 From: 杨张扬 <634643841@qq.com> Date: 星期三, 04 六月 2025 17:33:57 +0800 Subject: [PATCH] 点对点任务增加优先级、人工拆盘入库物料状态改为待检、取消物料的混合状态、增加一级料、二级料状态 --- api/ApiModel.cs | 26 +++++++++++++++++++++++--- 1 files changed, 23 insertions(+), 3 deletions(-) diff --git a/api/ApiModel.cs b/api/ApiModel.cs index 6150bbc..9c49c92 100644 --- a/api/ApiModel.cs +++ b/api/ApiModel.cs @@ -399,6 +399,7 @@ public string EndLoc { get; set; }//缁堢偣 public string Spe { get; set; }//瑙勬牸 public string staff { get; set; } = "None";//鎿嶄綔浜�+ public string shift { get; set; } = "None";//鐝 } public class EmptyInStackAreaInfo @@ -416,6 +417,7 @@ public string cntID { get; set; }//瀹瑰櫒ID public string staff { get; set; } = "None";//鎿嶄綔浜�+ public string shift { get; set; } = "None";//鐝 } public class SplitOutWarehouseInfo @@ -429,13 +431,22 @@ { public string old_CntId { get; set; }//鏃у鍣↖D锛岃鎷嗙殑 public string old_StartLoc { get; set; }//鏃у鍣ㄧ殑璧风偣 - public int old_IsOK { get; set; }//鏃у鍣↖D锛屾棫瀹瑰櫒鐨勮揣鍝佺殑0鍚堟牸1涓嶅悎鏍�+ + /// <summary> + /// 0鍚堟牸1寰呮2涓嶅悎鏍硷紝涓嬬嚎鍗冲緟妫�紝3杩囨湡锛�鎶�湳鍚堟牸锛�娣峰悎锛�涓�骇鏂欍�7浜岀骇鏂�+ /// </summary> + public int old_IsOK { get; set; }//鏃у鍣↖D锛屾棫瀹瑰櫒鐨勮揣鍝佺殑 public string new_CntIds { get; set; }//鎷嗗悗鐨勬柊瀹瑰櫒ID public string new_StartLoc { get; set; }//鏂板鍣↖D璧风偣 - public int new_IsOK { get; set; }//鏂板鍣↖D鐨勮揣鍝佺殑0鍚堟牸1涓嶅悎鏍硷紵 + + /// <summary> + /// 0鍚堟牸1寰呮2涓嶅悎鏍硷紝涓嬬嚎鍗冲緟妫�紝3杩囨湡锛�鎶�湳鍚堟牸锛�娣峰悎锛�涓�骇鏂欍�7浜岀骇鏂�+ /// </summary> + public int new_IsOK { get; set; }//鏂板鍣↖D鐨勮揣鍝佺殑 public string staff { get; set; } = "None";//鎿嶄綔浜�+ public string shift { get; set; } = "None";//鐝 } - + public class UpCgDetailModel { public string cntID { get; set; }//瀹瑰櫒ID @@ -444,5 +455,14 @@ public string staff { get; set; } = "None";//鎿嶄綔浜� } + + public class CreateP2PTaskInfo + { + public string startLoc { get; set; }//璧风偣 + public string endLoc { get; set; }//缁堢偣 + public int priority { get; set; }//浼樺厛绾�+ public string staff { get; set; } = "None";//鎿嶄綔浜�+ public string shift { get; set; } = "None";//鐝 + } } } -- Gitblit v1.9.1