using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wcftest.sapEntity { public class analyseMateral { /// /// 销售单号 /// public string saleCode { get; set; } /// /// 销售项号 /// public string saleCodeItem { get; set; } /// /// 跟踪号 /// public string trackNumber { get; set; } /// /// 物料号 /// public string materalCode { get; set; } /// /// 物料名称 /// public string materalName { get; set; } /// /// 缺料数量 /// public decimal lackQuantity { get; set; } /// /// 暂存区数量 /// public decimal tempoarayQuantity { get; set; } /// /// 库存数量 /// public decimal stockQuantity { get; set; } /// /// 库存单位 /// public string stockUnit { get; set; } } }