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.
16 lines
355 B
16 lines
355 B
3 years ago
|
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; }
|
||
|
}
|
||
|
}
|