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.

33 lines
871 B

using System.Collections.Generic;
namespace BBWYB.Server.Model.Dto
{
public class InputPurchaseSchemeRequest
{
/// <summary>
/// 采购方案分组Id,为空将新增分组
/// </summary>
public long? SchemeGroupId { get; set; }
/// <summary>
/// 慧眼标的Id
/// </summary>
public string HYBDId { get; set; }
/// <summary>
/// 慧眼方案Id
/// </summary>
public string HYSchemeId { get; set; }
public long ShopId { get; set; }
public string ProductId { get; set; }
public string SkuId { get; set; }
/// <summary>
/// 是否包邮
/// </summary>
public bool? IsFreeFreight { get; set; } = false;
public List<InputPurchaseSchemeProductRequest> PurchaseSchemeProductList { get; set; }
}
}