using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel.Entity.AGV { public class AgvContinueTask { /// /// 请求编号,唯一码 /// public string reqCode { get; set; } /// /// 请求时间戳 /// public string reqTime { get; set; } /// /// 客户端编号,如 PDA,HCWMS 等。 /// public string clientCode { get; set; } /// /// 令牌号, 由调度系统颁发。 /// public string tokenCode { get; set; } /// /// 工作位 /// public string wbCode { get; set; } /// /// 货架号 /// public string podCode { get; set; } /// /// AGV编号 /// public string agvCode { get; set; } /// /// 任务单号 /// public string taskCode { get; set; } /// /// 下一个子任务序列 /// public string taskSeq { get; set; } /// /// /// public PositionCodePathItem nextPositionCode { get; set; } } }