using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wcftest.sapEntity { class GR { // PO number 采购单号 4507524081 //PO item 行号 00020 //Material number 物料号 JEGT5007859 //Movement type 移动类型 101 //Plant 工厂 3TG1 //Storage location 存储位置 G021 //Quantity 数量 1 /// /// PO采购单号 /// public string poNumber { get; set; } /// /// PO采购单号 /// public string poItem { get; set; } /// /// 物料号 /// public string materialNumber { get; set; } /// /// 移动类型 /// public string moveType { get; set; } /// /// 工厂 /// public string plant { get; set; } /// /// 存储位置 /// public string storageLocation { get; set; } /// /// 数量 /// public decimal quantity { get; set; } } }