| | |
| | | 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 parameter { 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 dst { get; set; } |
| | | public string sku { get; set; } |
| | | public string BatchNo { 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 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; } |
| | | |
| | | } |
| | | } |