using BBWY.Client.Models.APIModel; using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.PackTask { public class SealBoxModel { /// /// /封箱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; } /// /// 封箱数 /// public int? SealBoxCount{ get; set; } } }