using System.Collections.Generic; namespace BBWY.Server.Model.Dto { public class PackSkuConfigRequest { public PackSkuConfigRequest() { } /// /// 店铺Sku /// public string SkuId { get; set; } /// /// 采购数量 /// public int PurchaseCount { get; set; } public IList PackSkuSplitConfigList { get; set; } } public class PackSkuSplitConfigRequest { public int Index { get; set; } public int PackCount { get; set; } public StoreRequest Store { get; set; } public bool IsJST { get; set; } } }