using System; namespace BBWY.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 ConsumableAmount { get; set; } = 0.00M; /// /// 仓储费 /// public decimal StorageAmount { get; set; } = 0.00M; /// /// 总计(不含发货运费) /// public decimal TotalCost { get; set; } = 0.00M; } }