using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.Task { /// /// 任务DTO /// public class WMSTaskDTO { /// /// WMS任务主键 /// public int TaskId { get; set; } /// /// 任务号 /// public int TaskNum { get; set; } /// /// 托盘号 /// public string PalletCode { get; set; } /// /// 巷道号 /// public string RoadWay { get; set; } /// /// 任务类型 /// public int TaskType { get; set; } /// /// 任务状态 /// public int TaskStatus { get; set; } /// /// 起点 /// public string SourceAddress { get; set; } /// /// 终点 /// public string TargetAddress { get; set; } /// /// 优先级 /// public int Grade { get; set; } /// /// /// public int WarehouseId { get; set; } /// /// /// public string AGVArea { get; set; } /// /// /// public int PalletType { get; set; } /// /// /// public string CurrentAddress { get; set; } /// /// /// public string NextAddress { get; set; } /// /// /// public int Depth { get; set; } /// /// /// public string OrderNo { get; set; } /// /// /// public int SourceKey { get; set; } /// /// /// public DateTime Dispatchertime { get; set; } /// /// /// public int MaterialType { get; set; } } }