You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
721 B
31 lines
721 B
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class QueryPurchaserRequest
|
|
{
|
|
public string Spu { get; set; }
|
|
|
|
public string Sku { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购商Id集合
|
|
/// </summary>
|
|
public List<string> PurchaserIdList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主营类目Id集合
|
|
/// </summary>
|
|
public List<long> CategoryIdList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 供应商产地
|
|
/// </summary>
|
|
public string Location { get; set; }
|
|
|
|
/// <summary>
|
|
/// 页码 从1开始
|
|
/// </summary>
|
|
public int PageIndex { get; set; }
|
|
|
|
public int PageSize { get; set; }
|
|
}
|
|
}
|
|
|