using System; namespace BBWYB.Client.Models { public class OrderCostDetailResponse { public long Id { get; set; } /// /// 耗材费 /// public decimal? ConsumableAmount { get; set; } = 0.00M; public DateTime? CreateTime { get; set; } /// /// 扣减数量 /// public int? DeductionQuantity { get; set; } = 0; /// /// 发货运费 /// public decimal? DeliveryExpressFreight { get; set; } = 0.00M; /// /// 头程运费 /// public decimal? FirstFreight { get; set; } = 0.00M; /// /// 入库操作费 /// public decimal? InStorageAmount { get; set; } = 0.00M; public bool? IsEnabled { get; set; } = false; /// /// 操作费 /// public decimal? OperationAmount { get; set; } = 0.00M; public string OrderId { get; set; } /// /// 出库操作费 /// public decimal? OutStorageAmount { get; set; } = 0.00M; public string ProductId { get; set; } /// /// 采购运费 /// public decimal? PurchaseFreight { get; set; } = 0.00M; /// /// 采购单流水Id /// public long? PurchaseOrderPKId { get; set; } /// /// 采购单Id /// public string PurchaseOrderId { get; set; } public long? ShopId { get; set; } /// /// 货款成本 /// public decimal? SkuAmount { get; set; } = 0.00M; ///// ///// sku毛利 ///// //public decimal? SkuGrossProfit { get; set; } = 0.00M; //[Column(StringLength = 50)] public string SkuId { get; set; } /// /// 仓储费 /// public decimal? StorageAmount { get; set; } = 0.00M; /// /// 采购成本(不含发货运费) /// public decimal? PurchaseAmount { get; set; } = 0.00M; /// /// 成本总计 /// public decimal? TotalCost { get; set; } = 0.00M; /// /// 单件采购成本(不含发货运费) /// public decimal? UnitCost { get; set; } = 0.00M; } }