using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto.SX.BillPboxruleDtos { public class BillPboxruleDto { /// /// Id /// public string Id { get; set; } /// /// WarehouseId /// public string WarehouseId { get; set; } /// /// IsStop /// public int IsStop { get; set; } /// /// DocsNo /// public string DocsNo { get; set; } /// /// 箱号 /// public string PBoxCode { get; set; } /// /// 装箱规则(1:层配;2:SPC) /// public string PackRule { get; set; } /// /// 每箱满轮子数 /// public int FullCountQty { get; set; } /// /// 每箱空轮子数 /// public int EmptyCountQty { get; set; } /// /// 是否允许焊点盘 /// public int IsSolder { get; set; } /// /// TorsionMaxQty /// public decimal TorsionMaxQty { get; set; } /// /// TorsionMinQty /// public decimal TorsionMinQty { get; set; } /// /// 子托盘编码 /// public string TrayCode { get; set; } /// /// Dryer /// public string Dryer { get; set; } /// /// Bulkhead /// public string Bulkhead { get; set; } /// /// Vacuum /// public string Vacuum { get; set; } /// /// 装箱状态(0未装箱/1装箱中/2装箱完成) /// public int ZXStateCode { get; set; } /// /// Memo /// public string Memo { get; set; } /// /// AddWho /// public string AddWho { get; set; } /// /// EditWho /// public string EditWho { get; set; } /// /// AddTime /// public DateTime AddTime { get; set; } /// /// EditTime /// public DateTime EditTime { get; set; } /// /// Sku编号 /// public string SkuCode { get; set; } /// /// 每箱允许最大焊点盘数量 /// public int SolderMaxCount { get; set; } /// /// 每个工字轮允许最大焊点数量 /// public int PerSolderMaxCount { get; set; } /// /// 24小时目标扭转值 /// public decimal Torsion24Qty { get; set; } /// /// 48小时目标扭转值 /// public decimal Torsion48Qty { get; set; } /// /// 72小时目标扭转值 /// public decimal Torsion72Qty { get; set; } /// /// 扭转目标范围 /// public decimal TorsionErrRange { get; set; } /// /// 每箱黑盘数量 /// public int BlackCount { get; set; } /// /// 返工盘数量 /// public int ReturnCount { get; set; } /// /// HoldTime /// public decimal HoldTime { get; set; } /// /// IsControlpanel /// public bool IsControlpanel { get; set; } } public class BillPboxruleQueryDto : PagerInfo { /// /// DocsNo /// public string DocsNo { get; set; } /// /// 箱号 /// public string PBoxCode { get; set; } /// /// 子托盘编码 /// public string TrayCode { get; set; } /// /// Sku编号 /// public string SkuCode { get; set; } /// /// 24小时目标扭转值 /// public decimal? Torsion24Qty { get; set; } /// /// 48小时目标扭转值 /// public decimal? Torsion48Qty { get; set; } /// /// 72小时目标扭转值 /// public decimal? Torsion72Qty { get; set; } /// /// 装箱状态(0未装箱/1装箱中/2装箱完成) /// public int? ZXStateCode { get; set; } public DateTime? AddTimeFrom { get; set; } public DateTime? AddTimeTo { get; set; } } }