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.

36 lines
1.0 KiB

using System.Collections.Generic;
namespace BBWYB.Server.Model.Dto
{
public class QuerySchemeRequest
{
/// <summary>
/// 采购方案Id
/// </summary>
public long? SchemeId { get; set; }
/// <summary>
/// 采购方案Id集合
/// </summary>
public IList<long> SchemeIdList { get; set; }
public long? ShopId { get; set; }
public IList<string> SkuIdList { get; set; }
/// <summary>
/// 采购商Id, 只要其中一个采购商品满足采购商条件则命中查询
/// </summary>
public string PurchaserId { get; set; }
/// <summary>
/// 采购平台, 只要其中一个采购商品满足平台条件则命中查询
/// </summary>
public Enums.Platform? PurchasePlatform { get; set; }
/// <summary>
/// 是否包含采购配件的基本信息(单价,Logo,标题等) 是=1 否=0或null
/// </summary>
public int? IncludePurchaseSkuBasicInfo { get; set; }
}
}