using BBWY.Client.Models.SealBox; using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.FallWare { public class FallWareConfiguredModel { /// /// 商品名称 /// public string ProductTitle { get; set; } /// /// 采购单号 /// public string PurchaseOrder { get; set; } /// /// 预约单号 /// public string PrewOrder { get; set; } /// /// 运单号 /// public string WaybillNo { get; set; } /// /// 仓库类型 /// public WareType? WareType { get; set; } /// /// 封箱id /// public long SealBoxId { get; set; } /// /// 仓库名称 /// public string WareName { get; set; } /// /// 箱子数 /// public int? BoxCount { get; set; } /// /// 箱子总数量 /// public int SealBoxTotalCount { get; set; } /// /// 仓库任务列表 /// public IList SealBoxConfigureTasks { get; set; } } public class FallWareConfigureTask : SealBoxConfigureTask { } }