using HH.WCS.XiaoMi.models; using SqlSugar; using System; using System.Collections.Generic; namespace HH.WCS.XiaoMi { public class smallMaterial : BaseModel { //ÁϼܱàºÅ public string rackNumber { get; set; } //ÅäËÍ·¾¶ public string shippingRoute { get; set; } //ÁϼܱàºÅ public List taskList { get; set; } } public class smallTaskList { //ÈÎÎñÃ÷ϸºÅ 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 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 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; } } }