using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.TaskInfo { /// /// 任务明细 /// public class TasksItem { /// /// 任务号 /// public string TaskCode { get; set; } /// /// 任务优先级 /// public int TaskPriority { get; set; } /// /// 料箱号 /// public string ContainerCode { get; set; } /// /// 料箱类型 /// public string ContainerType { get; set; } /// /// /// public string StorageTag { get; set; } /// /// 起始库位 /// public string FromLocationCode { get; set; } /// /// 出库的目标操作台编号 /// public string ToStationCode { get; set; } /// /// /// public string ToLocationCode { get; set; } } public class WMSTaskDTO { /// /// 任务类型 /// public string TaskType { get; set; } /// /// 任务分组 /// public string TaskGroupCode { get; set; } /// /// /// public string GroupPriority { get; set; } /// /// 任务明细 /// public List Tasks { get; set; } } }