| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.Text; |
| | | |
| | | namespace Model.InterFaceModel |
| | |
| | | public int StatusCode { get; set; } |
| | | public string Msg { get; set; } |
| | | } |
| | | |
| | | public enum PLCTypeEnum |
| | | { |
| | | /// <summary> |
| | | /// AGV小车 |
| | | /// </summary> |
| | | [Description("AGV小车")] |
| | | AGV = 2, |
| | | /// <summary> |
| | | /// 穿梭车 |
| | | /// </summary> |
| | | [Description("穿梭车")] |
| | | ShuttleCar = 7 |
| | | } |
| | | |
| | | /// <summary> |
| | | /// Wms专用 下发指令Dto |
| | | /// </summary> |
| | |
| | | /// </summary> |
| | | public string TaskType { get; set; } |
| | | |
| | | public PLCTypeEnum Type { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 托盘号 |
| | | /// </summary> |