using BBWY.Client.Models.SealBox;
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.FallWare
{
public class FallWareConfiguredModel : NotifyObject
{
private bool isHideSkuList = true;//默认隐藏
public bool IsHideSkuList { get => isHideSkuList; set { Set(ref isHideSkuList, value); } }
///
/// 商品名称
///
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 WareId { 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 setPurchaseOrderOverTimeMarkMsg;
public string SetPurchaseOrderOverTimeMarkMsg { get => setPurchaseOrderOverTimeMarkMsg; set { Set(ref setPurchaseOrderOverTimeMarkMsg, value); } }
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 DateTime? TransportOverTime { get; set; }
}
public class FallWareConfigureTask : SealBoxConfigureTask
{
}
}