using System; using System.Collections.Generic; using System.Text; namespace Wms.Screen.Dto.ZhongTian.Response { public class ZTBillDto : BillDto { /// /// 库存数量 /// public decimal StockQuantity { get; set; } } public class BillDto { /// /// 外部单据号 /// public string OutDocumentCode { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// 物料编码 /// public string MaterialCode { get; set; } /// /// 差异数量 /// public decimal ActualQuantity { get; set; } /// /// 完成数量 /// public decimal ExecutedQuantity { get; set; } /// /// 派工数量 /// public decimal OutDocumentQuantity { get; set; } /// /// 目标产线 /// public string ProductionLine { get; set; } /// /// 供应商 /// public string ContainerCode { get; set; } /// /// 单据类型 /// public string TypeCode { get; set; } /// /// 单据状态 /// public string StateCode { get; set; } } /// /// 码垛信息 /// public class StackDto { /// /// 托盘号 /// public string ContainerCode { get; set; } /// /// 托盘类型 /// public string ContainerType { get; set; } /// /// 状态 /// public string Statue { get; set; } /// /// 等级 /// public string Grade { get; set; } /// /// 垛型编码 /// public string Code { get; set; } /// /// 是否异常 /// public bool IsFail { get; set; } /// /// 异常原因 /// public string FailReason { get; set; } } public class TunelCount { public int ContGrpType { get; set; } public int? Tunnel { get; set; } public int Qty { get; set; } } public class WarningQtyModel { public string Name { get; set; } public int Qty { get; set; } public int WarnQty { get; set; } public int DiffQty { get { return Qty - WarnQty; } } } /// /// /// public class BoilerNoMatCodeModel { public string MatCode { get; set; } public string BoilerNo { get; set; } public int Qty { get; set; } } public class DeliveryDetails { /// /// 待发货单数 /// public int ShippingOrderQuantity { get; set; } /// /// 待发货箱数 /// public int ShippingBoxQuantity { get; set; } /// /// 产品信息 /// public List LProductInfos { get; set; } = new List(); /// /// 产品信息 /// public List RProductInfos { get; set; } = new List(); public string Value { get; set; } } public class ProductInfo { /// /// 设备号 /// public string DeviceId { get; set; } /// /// 任务号 /// public string TaskId { get; set; } /// /// 序号 /// public int Index { get; set; } /// /// 箱号 /// public string BoxBarCode { get; set; } /// /// 绕向 /// public string Winding { get; set; } /// /// 单号 /// public string SalesDoc { get; set; } /// /// 规格 /// public string MatName { get; set; } } }