using BBWY.Client.Models.SealBox; using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.FallWare { public class FallWareConfiguredModel:NotifyObject { /// /// 商品名称 /// 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 DateTime? SetPurchaseOrderOverTime { get; set; } /// /// 仓库任务列表 /// public IList SealBoxConfigureTasks { get; set; } private string fallWareRemainTime; public string FallWareRemainTime { get => fallWareRemainTime; set { Set(ref fallWareRemainTime, value); } } private bool isFallWareOverTime; public bool IsFallWareOverTime { get => isFallWareOverTime; set { Set(ref isFallWareOverTime, value); } } } public class FallWareConfigureTask : SealBoxConfigureTask { } }