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.
27 lines
753 B
27 lines
753 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class InputPurchaseSchemeProductRequest
|
|
{
|
|
/// <summary>
|
|
/// 店铺商品Id
|
|
/// </summary>
|
|
public string ProductId { get; set; }
|
|
/// <summary>
|
|
/// 店铺商品Skull
|
|
/// </summary>
|
|
public string SkuId { get; set; }
|
|
/// <summary>
|
|
/// 采购商品id
|
|
/// </summary>
|
|
public string PurchaseProductId { get; set; }
|
|
/// <summary>
|
|
/// 采购链接
|
|
/// </summary>
|
|
public string PurchaseUrl { get; set; }
|
|
public IList<InputPurchaseSchemeProductSkuRequest> PurchaseSchemeProductSkuList { get; set; }
|
|
}
|
|
}
|
|
|