using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.WcsModel { /// /// 脱机后与WMS交互实体 /// public class WmsTaskModel { /// /// 任务号 /// public string TaskNo { get; set; } /// /// 任务类型,0 入库任务 1 出库任务 2 移库任务 /// public string Type { get; set; } /// /// 起始位置 /// public string StartLocat { get; set; } /// /// 目标位置 /// public string EndLocat { get; set; } /// /// 托盘号 /// public string PalletNo { get; set; } /// /// 完成时间 /// public DateTime FinishDate { get; set; } /// /// 操作人 /// public string WCSName { get; set; } /// /// 物料编码 /// public string SkuNo { get; set; } /// /// 物料名称 /// public string SkuName { get; set; } /// /// 批次 /// public string LotNo { get; set; } /// /// 批次描述 /// public string LotText { get; set; } /// /// 托盘类型 0:货物 1:空托 /// public string PalletType { get; set; } /// /// 数量 /// public decimal Qty { get; set; } /// /// 供货批次 /// public string SupplierLot { get; set; } /// /// 规格 /// public string Standard { get; set; } /// /// 包装规格 /// public string PackageStandard { get; set; } /// /// 箱码集合 /// public List BoxInfoList { get; set; } } /// /// 箱码信息 /// public class BoxInfo { /// /// 上游系统单号/行号 /// public string OrderCode { get; set; } /// /// 供应商代码 /// public string Custom { get; set; } /// /// 供应商名称 /// public string CustomName { get; set; } /// /// 箱码 /// public string BoxNo { get; set; } /// /// 盒码 /// public string BoxNo2 { get; set; } /// /// 支码 /// public string BoxNo3 { get; set; } /// /// 数量 /// public decimal Qty { get; set; } /// /// 整箱数量 /// public decimal FullQty { get; set; } /// /// 组托时间 /// public DateTime CompleteTime { get; set; } /// /// 生产日期 /// public DateTime ProductionTime { get; set; } /// /// 过期日期 /// public DateTime ExpirationTime { get; set; } /// /// 检验标记 /// 是否抽检箱 0:否 1:是 /// public string InspectMark { get; set; } /// /// 零箱标记 /// 是否零头箱 0:否 1:是 /// public string BitBoxMark { get; set; } /// /// 储存期至 /// public DateTime StoreTime { get; set; } /// /// 总件数 /// public int QtyCount { get; set; } /// /// 弟几件 /// public int QtyOrd { get; set; } } }