using System.Collections.Generic; namespace WCS.Service.Entity { /// /// 获取出库任务返回结果 /// public class I_WCS_GetOutTaskResponse : WcsContractApiResponse { /// /// 结果 /// public bool ResType { get; set; } /// /// 消息 /// public string ResMessage { get; set; } /// /// 返回任务 /// public List WMSTasks { get; set; } } /// /// 返回任务项 /// public class I_WCS_GetOutTaskResponseSingle { /// /// WMS任务号 /// public string WMSTaskNum { get; set; } /// /// 任务类型(1:入库2:出库3:移库4:移动(搬运) 5:异常) /// public int TaskType { get; set; } /// /// 出库货位 /// public string OutWareCellNo { get; set; } /// /// 仓库名称 /// public string WareHouseName { get; set; } /// /// 容器条码 /// public string ContainerBarCode { get; set; } /// /// 行 /// public int Row { get; set; } /// /// 列 /// public int Colomn { get; set; } /// /// 层 /// public int Layer { get; set; } /// /// 巷道号 /// public string TunnelNum { get; set; } /// /// 站台号 堆垛机放货站台 /// public string Memo1 { get; set; } = ""; /// /// 备用 /// public string Memo2 { get; set; } = ""; /// /// 备用 /// public string Memo3 { get; set; } = ""; /// /// 备用 /// public string Memo4 { get; set; } = ""; /// /// 备用 /// public string Memo5 { get; set; } = ""; /// /// 机械手:子托盘的尺寸编码 /// public string PalletizingSonTraySize { get; set; } /// /// 机械手:码垛的箱子尺寸编码 /// public string PalletizingBoxSize { get; set; } /// /// 子托盘颜色编号(1蓝:,2:白,3:绿) /// public int SonTrayColorNo { get; set; } /// /// 垛型代码 /// public int TASK_STACKINGTYPE { get; set; } /// /// 整箱毛重 /// public decimal TASK_WEIGHT { get; set; } /// /// 熟化时长 /// public decimal MatureDateLength { get; set; } /// /// 卷长度 /// public decimal Length { get; set; } } }