using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.APIModel { public class SearchWaitFallWareResponse { /// /// 数量 /// public int TotalCount { get; set; } public IList WaitFallWareList { get; set; } } public class WaitFallWareModelResponse { /// /// 店铺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 List AcceptUserNames { get; set; } /// /// 封箱sku列表 /// public List SealBoxSkus { get; set; } /// /// 封箱的箱子数量 /// public int SealBoxCount { get; set; } /// /// 封箱id /// public long SealBoxId { get; set; } } public class WaitFallWareModel { /// /// 店铺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 AcceptUserNames { get; set; } /// /// 封箱sku列表 /// public List SealBoxSkus { get; set; } /// /// 封箱的箱子数量 /// public int SealBoxCount { get; set; } /// /// 封箱id /// public long SealBoxId { get; set; } } }