| | |
| | | /// <summary> |
| | | /// 托盘编码 |
| | | /// </summary> |
| | | public string CntrCode { get; set; } |
| | | public string ItemCode { get; set; } |
| | | |
| | | } |
| | | |
| | |
| | | [JsonProperty("taskNo")] |
| | | public string TaskNo { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取托盘物料信息 |
| | | /// </summary> |
| | | public partial class GetCntrInfoModel |
| | | { |
| | | /// <summary> |
| | | /// 托盘号 |
| | | /// </summary> |
| | | [JsonProperty("cntrNo")] |
| | | public string CntrNo { get; set; } |
| | | } |
| | | #endregion |
| | | |
| | | #region 大洋立库接口接收返回参数 |
| | |
| | | [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 |
| | | { |
| | | |