namespace NewPdaSqlServer.Dto.service; /// /// 待处理物料信息DTO /// public class PendingMaterialDto { /// /// 库位编码 /// public string SectionCode { get; set; } /// /// 物料编号 /// public string ItemNo { get; set; } /// /// 物料名称 /// public string ItemName { get; set; } /// /// 物料规格 /// public string ItemSpec { get; set; } /// /// 待处理数量 /// public decimal PendingQty { get; set; } }