using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.MES { public class MESTaskDTO { /// /// 唯一请求码 /// public string reqCode { get; set; } /// /// 任务号 /// public int taskId { get; set; } /// /// 任务类型 /// public string taskType { get; set; } /// /// 楼层 /// public string floor { get; set; } /// /// 起点 /// public string startPoint { get; set; } /// /// 终点 /// public string endPoint { get; set; } /// /// 起点执行时间 /// public string startPointTime { get; set; } /// /// 终点执行时间 /// public string endPointTime { get; set; } /// /// 任务起点货位 /// public string startGoodsAllocation { get; set; } /// /// 任务终点货位 /// public string endGoodsAllocation { get; set; } /// /// 任务说明 /// public string dExplain { get; set; } /// /// 任务优先级 /// public string dPriority { get; set; } /// /// 容器编码 /// public string containerCode { get; set; } /// /// 起点显示信息 /// public string startPointMsg { get; set; } /// /// 终点显示信息 /// public string endPointMsg { get; set; } /// /// AGV列表 /// public List agvList { get; set; } } public class AGVInfoDTO { /// /// AGV编码 /// public string agvCode { get; set; } /// /// AGV名称 /// public string agvName { get; set; } } }