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.

43 lines
1.2 KiB

namespace BBWYB.Server.Model.Dto
{
public class InputPurchaseSchemeProductRequest
{
public string ProductId { get; set; }
public string SkuId { get; set; }
/// <summary>
/// 采购商品Id
/// </summary>
public string PurchaseProductId { get; set; }
/// <summary>
/// 采购链接
/// </summary>
public string PurchaseUrl { get; set; }
/// <summary>
/// 采购商Id (1688 SellerUserId)
/// </summary>
public string PurchaserId { get; set; }
/// <summary>
/// 采购商Id2 (1688 SellerLoginId)
/// </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 List<InputPurchaseSchemeProductSkuRequest> PurchaseSchemeProductSkuList { get; set; }
}
}