using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel.Entity.AGV { public class AgvSchedulingTaskDto { /// /// 请求编号,唯一码 /// public string reqCode { get; set; } /// /// 请求时间戳 /// public string reqTime { get; set; } /// /// 客户端编号,如 PDA,HCWMS 等 /// public string clientCode { get; set; } /// /// 令牌号, 由调度系统颁发 /// public string tokenCode { get; set; } /// /// 任务类型 /// public string taskTyp { get; set; } /// /// 容器类型 /// public string ctnrTyp { get; set; } /// /// 容器编号 /// public string ctnrCode { get; set; } /// /// 工作位 /// public string wbCode { get; set; } /// /// 位置路径 /// public List positionCodePath { get; set; } /// /// 货架编号 /// public string podCode { get; set; } /// /// 左右上下,180_0_90_-90 /// public string podDir { get; set; } /// /// 货架类型 /// public string podTyp { get; set; } /// /// 物料批次 /// public string materialLot { get; set; } /// /// 优先级,1-127,最大优先级最高 /// public string priority { get; set; } /// /// AGV编号,填写标识指定AGV执行任务 /// public string agvCode { get; set; } /// /// 任务单号 /// public string taskCode { get; set; } /// /// 自定义字段 /// public string data { get; set; } } public class PositionCodePathItem { /// /// 位置编号 /// public string positionCode { get; set; } /// /// 位置类型说明 /// public string type { get; set; } } }