using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareTestForm.Model { public class MyStoreForUpdateStoreBySAP2 { /// /// 物料号 /// public string MaterialCode { get; set; } /// /// 物料描述 /// public string MaterialName { get; set; } /// /// SAP位置 /// public string SapLocation { get; set; } /// /// 批次号 /// public string BatchNo { get; set; } /// /// 实际数量 /// public string Str_Quantity { get; set; } /// /// 实际数量 /// public decimal Quantity { get { return Convert.ToDecimal(Str_Quantity); } } /// /// 库位编号 /// public string LocationCode { get; set; } } }