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.
 
 

30 lines
765 B

namespace SiNan.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; }
/// <summary>
/// 检查sku数量是否匹配,仅在使用sku条件查询时生效
/// </summary>
public bool IsCheckSkuCount { get; set; }
/// <summary>
/// 检查环节
/// </summary>
public string CheckStep { get; set; }
}
}