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.
34 lines
1.0 KiB
34 lines
1.0 KiB
using System.Collections.Generic;
|
|
|
|
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class InputPurchaseSchemeRequest
|
|
{
|
|
public string ShopId { get; set; }
|
|
public string ProductId { get; set; }
|
|
public string SkuId { get; set; }
|
|
/// <summary>
|
|
/// 采购默认成本
|
|
/// </summary>
|
|
public decimal? DefaultCost { get; set; }
|
|
/// <summary>
|
|
/// 采购实际成本
|
|
/// </summary>
|
|
public decimal? RealCost { get; set; }
|
|
/// <summary>
|
|
/// 采购商Id
|
|
/// </summary>
|
|
public string PurchaserId { get; set; }
|
|
public string PurchaserName { get; set; }
|
|
/// <summary>
|
|
/// 采购商发货地
|
|
/// </summary>
|
|
public string PurchaserLocation { get; set; }
|
|
/// <summary>
|
|
/// 采购平台
|
|
/// </summary>
|
|
public Enums.Platform PurchasePlatform { get; set; } = Enums.Platform.阿里巴巴;
|
|
|
|
public IList<InputPurchaseSchemeProductRequest> PurchaseSchemeProductList { get; set; }
|
|
}
|
|
}
|
|
|