using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.External { public class TaskResponse { /// /// 任务号 /// public string taskNo { get; set; } /// /// 任务类型 /// public string taskType { get; set; } /// /// 起点仓库 /// public string startStock { get; set; } /// /// 起点库区 /// public string startArea { get; set; } /// /// 起点位置 /// public string startBit { get; set; } /// /// 终点仓库 /// public string endStock { get; set; } /// /// 终点库区 /// public string endArea { get; set; } /// /// 终点位置 /// public string endBit { get; set; } /// /// 优先级(数值越大越高) /// public int priority { get; set; } /// /// 托盘码 /// public string trayCode { get; set; } /// /// 托盘重量 /// public decimal trayWeight { get; set; } /// /// 生产线 /// public string produceLine { get; set; } /// /// 货位档位 /// public string locationGear { get; set; } public string projectCode { get; set; } public string startAreaClass { get; set; } public string endAreaClass { get; set; } /// /// 物料编码 /// public string itemCode { get; set; } /// /// 是否需要打包 /// public string CN_C_IS_LOT_OU { get; set; } /// /// 工单号 /// public string workOrder { get; set; } /// /// 流离、堆叠的存放索引 /// public string qtyIndex { get; set; } /// /// 任务标识 /// public string flag { get; set; } } }