namespace BBWYB.Server.Model.Dto
{
public class AssocationOrderCostDetailResponse
{
///
/// SKU成本Id
///
public long Id { get; set; }
///
/// 订单Id
///
public string OrderId { get; set; }
public string SkuId { get; set; }
///
/// SKU标题
///
public string Title { get; set; }
public string Logo { get; set; }
///
/// 采购货款
///
public decimal SkuAmount { get; set; }
///
/// 采购运费
///
public decimal PurchaseFreight { get; set; }
///
/// 采购数量
///
public int PurchaseQuantity { get; set; }
///
/// 采购单价
///
public decimal PurchasePrice { get; set; }
}
}