using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO { /// /// 凯乐士任务信息 /// public class GALAXISTaskInfo { public string groupId { get; set; } public string msgTime { get; set; } public List tasks { get; set; } } public class GALAXISTask { /// /// 任务编号 /// public string taskId { get; set; } /// /// 0入库,1出库,2移库 /// public int taskType { get; set; } /// /// 优先级 /// public int priorityCode { get; set; } /// /// 任务库区,RCS定义 /// public string district { get; set; } = "cy"; /// /// 容器类型,待定 /// public int containerType { get; set; } = 1; /// /// 容器编号 /// public string barCode { get; set; } /// /// 起点点位 /// public string startNode { get; set; } /// /// 起点区域,使用点位默认-1 /// public int fromArea { get; set; } = -1; /// /// 终点点位 /// public string endNode { get; set; } /// /// 终点区域,使用点位默认-1 /// public int toArea { get; set; } = -1; /// /// 侧叉拆叠盘指定层数,任务类型入库 /// public int layer { get; set; } } }