步步为盈
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.

22 lines
508 B

using Newtonsoft.Json.Linq;
namespace BBWY.Server.Model.Dto
{
public class SearchProductSkuRequest : PlatformRequest
{
/// <summary>
/// 当Spu有值时会忽略Sku
/// </summary>
public string Spu { get; set; }
/// <summary>
/// 多个Sku逗号间隔
/// </summary>
public string Sku { get; set; }
/// <summary>
/// 是否包含源
/// </summary>
public bool IsContainSource { get; set; }
}
}