using System;
namespace BBWYB.Client.Models
{
public class OrderCostDetailResponse
{
public long Id { get; set; }
public DateTime? CreateTime { get; set; }
///
/// 扣减数量
///
public int DeductionQuantity { get; set; } = 0;
///
/// 发货运费
///
public decimal DeliveryExpressFreight { get; set; } = 0.00M;
public string OrderId { get; set; }
public string ProductId { get; set; }
///
/// 单件成本
///
public decimal UnitCost { get; set; } = 0.00M;
///
/// 采购单流水Id
///
public long PurchaseOrderPKId { get; set; }
public string SkuId { get; set; }
///
/// Sku成本(商品成本)
///
public decimal SkuAmount { get; set; } = 0.00M;
///
/// 采购运费
///
public decimal PurchaseFreight { get; set; } = 0.00M;
///
/// 头程运费
///
public decimal FirstFreight { get; set; } = 0.00M;
//public decimal OperationAmount { get; set; } = 0.00M;
///
/// 入仓操作费
///
public decimal InStorageAmount { get; set; }
///
/// 出仓操作费
///
public decimal OutStorageAmount { get; set; }
///
/// 耗材费
///
public decimal ConsumableAmount { get; set; } = 0.00M;
///
/// 仓储费
///
public decimal StorageAmount { get; set; } = 0.00M;
///
/// 总计(不含销售运费 历史遗留)
///
public decimal TotalCost { get; set; } = 0.00M;
///
/// 总计 包含销售运费
///
public decimal TotalCost2 { get; set; } = 0.00M;
}
}