using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Model.Models; namespace WIDESEA_DTO.CalcOut { /// /// 已分拣库存明细DTO /// public class PickedStockDetailDTO { /// /// 托盘编号 /// public string PalletCode { get; set; } /// /// 物料编号 /// public string MaterielCode { get; set; } /// /// 批次号 /// public string BatchNo { get; set; } /// /// 本次出库数量 /// public decimal OutboundQuantity { get; set; } /// /// 剩余库存数量 /// public decimal RemainingQuantity { get; set; } /// /// /// public string LocationCode { get; set; } /// /// /// public List OutStockLockInfos { get; set; } = new List(); } }