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
541 B
20 lines
541 B
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class QuerySchemeAndGroupRequest
|
|
{
|
|
/// <summary>
|
|
/// 店铺Id
|
|
/// </summary>
|
|
public long ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺商品Id列表
|
|
/// </summary>
|
|
public IList<string> ProductIdList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否包含采购配件的基本信息(单价,Logo,标题等) 是=1 否=0或null
|
|
/// </summary>
|
|
public int? IncludePurchaseSkuBasicInfo { get; set; }
|
|
}
|
|
}
|
|
|