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.

48 lines
1.3 KiB

namespace BBWYB.Server.Model.Dto
{
public class InputPurchaseSchemeProductRequest
{
/// <summary>
/// 店铺商品Id
/// </summary>
public string ProductId { get; set; }
/// <summary>
/// 店铺商品SkuId
/// </summary>
public string SkuId { get; set; }
/// <summary>
/// 采购商品Id
/// </summary>
public string PurchaseProductId { get; set; }
/// <summary>
/// 采购链接
/// </summary>
public string PurchaseUrl { get; set; }
/// <summary>
/// 采购商Id
/// </summary>
public string PurchaserId { get; set; }
/// <summary>
/// 采购商Id
/// </summary>
public string PurchaserId2 { get; set; }
/// <summary>
/// 采购商名称
/// </summary>
public string PurchaserName { get; set; }
/// <summary>
/// 采购商发货地
/// </summary>
public string PurchaserLocation { get; set; }
public string PurchaserMemberId { get; set; }
public Enums.Platform? PurchasePlatform { get; set; }
public IList<InputPurchaseSchemeProductSkuRequest> PurchaseSchemeProductSkuList { get; set; }
}
}