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.

37 lines
861 B

namespace BBWYB.Server.Model.Dto
{
public class QueryPurchaserRequest
{
public long ShopId { get; set; }
public string Spu { get; set; }
public string Sku { get; set; }
/// <summary>
/// 采购商Id集合
/// </summary>
public List<string> PurchaserNameList { get; set; }
/// <summary>
/// 主营类目Id集合
/// </summary>
public List<long> CategoryIdList { get; set; }
/// <summary>
/// 供应商产地集合
/// </summary>
public List<string> LocationList { get; set; }
/// <summary>
/// 页码 从1开始
/// </summary>
public int PageIndex { get; set; }
/// <summary>
/// 页记录数 最大20
/// </summary>
public int PageSize { get; set; }
}
}