| | |
| | | using HH.WCS.XiaoMi.models; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | |
| | | namespace HH.WCS.XiaoMi |
| | | { |
| | | public class smallMaterial : BaseModel |
| | | public class bigMaterial : 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 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 parameters |
| | | { |
| | | //立库起点、大件起点 |
| | | public string src { get; set; } |
| | | //料架仓位明细 |
| | | public string trayCode { 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; } |
| | | |
| | | |