zxx
2025-07-01 5e04278c55e10c245a184057b6ae3bd8238dd93a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using HH.WCS.XiaoMi.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.XiaoMi
{
    public class smallMaterial : BaseModel
    {
        //¶©µ¥TSÃû×Ö
        public string ts_name { get; set; }
        public string createdNamne { get; set; }
        public string routeType { get; set; }
        //¶©µ¥ÓÅÏȼ¶
        public string priority { get; set; }
        //ÈÎÎñÀàÐÍ ×Ô¶¯£¬È˹¤
        public string taskType { get; set; }
        //ÁϼܱàÂë
        public string rackCode { get; set; }
        //TS¶©µ¥²ÎÊý
        public List<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 string src { get; set; }
        //ÁϼܲÖλÃ÷ϸ
        public string trayCode { get; set; }
        //Á÷ÀûÁϼÜλÖÃ
        public string dst { get; set; }
        //Áã¼þÀà
        public string sku { get; set; }
        //ÈÎÎñºÅ
        public string BatchNo { get; set; }
        public int num { get; set; }
 
 
    }
}