| | |
| | | public string Standard { get; set; } // 规格 |
| | | public decimal PickQty { get; set; } // 托盘待拣数量 |
| | | public decimal? PickedQty { get; set; } // 托盘已拣数量 |
| | | public string SkuNo { get; set; } // 物料编号 |
| | | } |
| | | public class BoxInfo |
| | | { |
| | | public string BoxNo { get; set; } // 箱码/支码 |
| | | public int Qty { get; set; } // 箱内数量 |
| | | public decimal Qty { get; set; } // 箱内数量 |
| | | public string SkuNo { get; set; } // 物料编码 |
| | | public string SkuName { get; set; } // 物料名称 |
| | | public string LotNo { get; set; } // 批次 |
| | | public int? PickedQty { get; set; } // 箱内已拣数量 |
| | | public decimal? PickedQty { get; set; } // 箱内已拣数量 |
| | | } |
| | | public class DetailIdSkuLotNo |
| | | { |