using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.FallWare { public class CloudWareBoxModel { /// /// 箱子id /// public long SealBoxId { get; set; } /// /// 供应商名称 /// public string ShopName { get; set; } /// /// CLPS采购单号 /// public string CLPSPurchaseOrder { get; set; } /// /// 预约单号 /// public string PrewOrder { get; set; } /// /// 目的城市-仓库 /// public string WareName { get; set; } /// /// 箱子数 /// public int BoxCount { get; set; } /// /// 商品数量 /// public int ProductCount { get; set; } } }