using System.Collections.Generic;
namespace BBWY.Server.Model.Dto
{
public class ManualCalculationCostRequest
{
public string OrderId { get; set; }
public bool IsSetStorageType { get; set; }
public Enums.StorageType? StorageType { get; set; }
/////
///// 采购成本
/////
//public decimal PurchaseCost { get; set; }
/////
///// 发货运费
/////
//public decimal DeliveryExpressFreight { get; set; }
public IList OrderCostDetailList { get; set; }
///
/// 平台扣点
///
public decimal PlatformCommissionRatio { get; set; }
}
public class OrderCostDetailRequest
{
public int DeductionQuantity { get; set; } = 0;
public decimal DeliveryExpressFreight { get; set; } = 0.00M;
public string ProductId { get; set; }
public string SkuId { get; set; }
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; } = 0M;
public decimal UnitCost { get; set; } = 0M;
}
}