using System; using System.Collections.Generic; using System.Text; namespace WCS.Service.Entity { public class I_WCS_GetInTaskResponse : WcsContractApiResponse { /// /// 结果 /// public bool ResType { get; set; } /// /// /// public string ResMessage { get; set; } = ""; /// /// WMS任务号 /// public string WMSTaskNum { get; set; } = "0"; /// /// 任务类型(1:入库2:出库3:移库4:移动(搬运) 5:异常) /// public int TaskType { get; set; } /// /// 仓库名称 /// public string WareHouseName { get; set; } = ""; /// /// 入库巷道(集合巷道,由WCS自行判断入到哪一个巷道,最前面的最优先。) /// public string TunnelNum { get; set; } = ""; /// /// 目标位置(入库该地址为srm.如果是移动任务,该地址为WCS传递的目标位置。) /// public string EndPostion { get; set; } = ""; public int Priority { get; set; } = 0; public string Memo1 { get; set; } = ""; public string Memo2 { get; set; } = ""; public string Memo3 { get; set; } = ""; /// /// 熟化类型(0=不需熟化、1=熟化房熟化、2=小烘房熟化) /// public int TASK_MatureType { get; set; } /// /// 熟化时间(小时:10,16) /// public decimal TASK_MatureDate { get; set; } /// /// 熟化温度(小数) /// public decimal TASK_MatureTemperat { get; set; } public string ContainerCode { get; set; } = ""; } }