步步为盈

15 lines
317 B

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