| | |
| | | /// <summary> |
| | | /// 托盘编码 |
| | | /// </summary> |
| | | public string CntrCode { get; set; } |
| | | public string ItemCode { get; set; } |
| | | |
| | | } |
| | | |
| | |
| | | [JsonProperty("workStatus")] |
| | | public int WorkStatus { get; set; } |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 申请终点 |
| | | /// </summary> |
| | | public partial class ApplyDestModel |
| | | { |
| | | /// <summary> |
| | | /// 申请类型,1:堆垛机放货异常申请新终点;2:输送线到达接驳位申请终点; |
| | | /// </summary> |
| | | [JsonProperty("applyType")] |
| | | public long ApplyType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 当前位置,wcs自行控制托盘到特定的入口时,wms根据位置计算终点 |
| | | /// </summary> |
| | | [JsonProperty("loc")] |
| | | public string Loc { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务号 |
| | | /// </summary> |
| | | [JsonProperty("taskNo")] |
| | | public string TaskNo { get; set; } |
| | | } |
| | | |
| | | public partial class Empty |
| | | { |
| | | |