using BBWY.Client.Models.APIModel; using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.PackTask { public class SealBoxModel : NotifyObject { /// /// 过期时间 /// public DateTime? SealBoxPackOverTime { get; set; } /// /// /封箱id /// public long SealBoxId { get; set; } /// /// 店铺Id /// public string ShopId { get; set; } /// /// 仓库Id(同一个店铺 唯一) /// public string WareId { get; set; } /// /// 店铺名称 /// public string ShopName { get; set; } /// /// 仓库名 /// public string WareName { get; set; } /// /// 团队名称 /// public string DepartmentName { get; set; } /// /// 对接人(同团队下) /// public string AcceptUserName { get; set; } /// /// 封箱sku列表 /// public List SealBoxSkus { get; set; } /// /// 封箱数 /// private int? sealBoxCount; /// /// 封箱数 /// public int? SealBoxCount { get => sealBoxCount; set { Set(ref sealBoxCount, value); } } private string sealBoxRemainTime; public string SealBoxRemainTime { get => sealBoxRemainTime; set { Set(ref sealBoxRemainTime, value); } } private bool isSealBoxOverTime; public bool IsSealBoxOverTime { get => isSealBoxOverTime; set { Set(ref isSealBoxOverTime, value); } } private string sealBoxPackOverTimeMarkMsg; /// /// 封箱超时备注 /// public string SealBoxPackOverTimeMarkMsg { get => sealBoxPackOverTimeMarkMsg; set { Set(ref sealBoxPackOverTimeMarkMsg, value); } } } }