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.

37 lines
1.1 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; }
/// <summary>
/// 采购商名称
/// </summary>
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; }
}
}