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.

33 lines
740 B

2 years ago
namespace BBWYB.Server.Model.Dto
{
public class AssocationOrderCostDetailRequest
{
/// <summary>
/// 订单Id
/// </summary>
public string OrderId { get; set; }
public string SkuId { get; set; }
/// <summary>
/// 采购货款
/// </summary>
public decimal SkuAmount { get; set; }
/// <summary>
/// 采购运费
/// </summary>
public decimal PurchaseFreight { get; set; }
/// <summary>
/// 采购数量
/// </summary>
public int PurchaseQuantity { get; set; }
/// <summary>
/// 采购单价
/// </summary>
public decimal PurchasePrice { get; set; }
}
}