From eaefefa5c4cf5ce403ce5f0dcf09a5ad21837e43 Mon Sep 17 00:00:00 2001
From: zxx <Zxx@HanInfo>
Date: 星期一, 07 七月 2025 17:34:44 +0800
Subject: [PATCH] 1

---
 HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/smallMaterial.cs |   71 ++++++++++++++++++++++++++---------
 1 files changed, 52 insertions(+), 19 deletions(-)

diff --git a/HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/smallMaterial.cs b/HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/smallMaterial.cs
index 4a1bd12..d9bb519 100644
--- a/HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/smallMaterial.cs
+++ b/HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/smallMaterial.cs
@@ -1,34 +1,67 @@
 using HH.WCS.XiaoMi.models;
 using SqlSugar;
 using System;
+using System.Collections.Generic;
 
 namespace HH.WCS.XiaoMi
 {
-    public class bigMaterial : BaseModel
+    public class smallMaterial : BaseModel
     {
+        //料架编号
+        public string rackNumber { get; set; }
+        //配送路径
+        public string shippingRoute { get; set; }
+        //料架编号
+        public List<smallTaskList> taskList { get; set; }
+
         
-        public string ts_name { get; set; }
-        public string createdNamne { get; set; }
-
-        public parameters parameters { get; set; }
-
-
-        public string taskID { get; set; }
-        public string order_name { get; set; }
-        public DateTime dead_line { get; set; }
         
     }
-    public class parameters
+    public class smallTaskList
     {
-        public string src { get; set; }
-        public string src_area { get; set; }
-        public string dst { get; set; }
-        public string dst_area { get; set; }
-        public string sku { get; set; }
-        public string BatchNo { get; set; }
-        public string issueMode { get; set; }
-        public int num { get; set; }
+        //任务明细号
+        public string taskName { get; set; }
+        //订单优先级
+        public string priority { get; set; }
+        //截止时间
+        public DateTime dead_line { get; set; }
+        //脚本名称
+        public string ts_name { get; set; }
+        //创建者名称
+        public string createdName { get; set; }
+        //任务编号
+        public string taskID { get; set; }
+        //料架库位
+        public string rackPosition { get; set; }
+        //TS订单参数
+        public List<Parameters> parameters { get; set; }
 
+        //public string routeType { get; set; }
+        ////任务类型 自动,人工
+        //public string taskType { get; set; }
+        ////料架编码
+        //public string rackCode { get; set; }
+        ////任务明细号
+        //public string order_name { get; set; }
+    }
+    public class Parameters
+    {
+        //任务号
+        public string BatchNo { get; set; }
+        //起点
+        public string src { get; set; }
+        //起点缓存区
+        public string src_area { get; set; }
+        //终点
+        public string dst { get; set; }
+        //终点缓存区
+        public string dst_area { get; set; }
+        //零件类
+        public string sku { get; set; }
+        //起点缓存区发料方式
+        public string issueMode { get; set; }
+        //数量
+        public int num { get; set; }
 
     }
 }

--
Gitblit v1.9.1