using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Service.Entity { /// /// 合并响应实体 /// public class I_WCS_MergeinfoResponse : WcsContractApiResponse { /// /// 结果 /// public bool ResType { get; set; } /// /// 操作描述 /// public string ResMessage { get; set; } = ""; /// /// WMS任务号 /// public string WMSTaskNum { get; set; } = "0"; /// /// 任务组标识 /// public string TaskGroupKey { get; set; } = "0"; /// /// 仓库名称 /// public string WareHouseName { get; set; } = ""; /// /// 卷数 /// public int Root { get; set; } /// /// 备用1 /// public string Memo1 { get; set; } = ""; /// /// 备用2 /// public string Memo2 { get; set; } = ""; /// /// 备用3 /// public string Memo3 { get; set; } = ""; /// /// 备用4 /// public bool Memo4 { get; set; } } }