using System; using System.Collections.Generic; using System.Text; namespace BBWY.Server.Model.Dto { public class QueryPurchaseOrderRequest { public long ShopId { get; set; } public IList SkuIdList { get; set; } public Enums.StorageType StorageType { get; set; } } }