using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.FallWare { public class JDWareBoxModel:NotifyObject { private string purchaseOrder; private string prewOrder; private string productTitle; /// <summary> /// 箱子id /// </summary> public long SealBoxId { get; set; } /// <summary> /// 供应商名称 /// </summary> public string ShopName { get; set; } /// 运单号 /// </summary> public string WaybillNo { get; set; } /// <summary> /// 仓库id /// </summary> public string WareId { get; set; } /// <summary> /// 目的城市-仓库 /// </summary> public string WareName { get; set; } /// <summary> /// 箱子数 /// </summary> public int BoxCount { get; set; } /// <summary> /// 商品数量 /// </summary> public int ProductCount { get; set; } /// <summary> /// 采购单号 /// </summary> public string PurchaseOrder { get => purchaseOrder; set { Set(ref purchaseOrder, value); } } /// <summary> /// 预约单号 /// </summary> public string PrewOrder { get => prewOrder; set { Set(ref prewOrder, value); } } /// <summary> /// 商品名称 /// </summary> public string ProductTitle { get => productTitle; set { Set(ref productTitle, value); } } /// <summary> /// 供应商 /// </summary> public string ProviderName { get; set; } /// <summary> /// 仓库城市 /// </summary> public string WareCity { get; set; } } }