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.
20 lines
447 B
20 lines
447 B
2 years ago
|
namespace SBF.Model.Dto
|
||
|
{
|
||
|
public class SearchSkuJoinPopularizeChannelRequest
|
||
|
{
|
||
|
public long? ShopId { get; set; }
|
||
|
|
||
|
public string Spu { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 有sku条件会忽略spu
|
||
|
/// </summary>
|
||
|
public string Sku { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 有skuList条件会忽略spu和sku
|
||
|
/// </summary>
|
||
|
public List<string> SkuList { get; set; }
|
||
|
}
|
||
|
}
|