namespace WCS.WorkEngineering.WebApi.Models.WMS.Response { public class I_WCS_GetInTaskResponse : WcsContractApiResponse { /// /// 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 ContainerCode { get; set; } = ""; /// /// 0默认值 1载货 2空盘(包含一个托盘或一摞两种情况) /// public int ContainerType { get; set; } = 0; public string Memo1 { get; set; } = ""; public string Memo2 { get; set; } = ""; public string Memo3 { get; set; } = ""; } }