namespace BBWY.Client.Models
{
public class ToDayOrderAchievement : NotifyObject
{
private decimal saleAmount;
private decimal profit;
private decimal profitRaito;
private int orderCount;
private decimal purchaseAmount;
private decimal deliveryExpressFreight;
private decimal platformCommissionAmount;
private decimal totalCost;
///
/// 销售额
///
public decimal SaleAmount { get => saleAmount; set { Set(ref saleAmount, value); } }
///
/// 总成本
///
public decimal TotalCost { get => totalCost; set { Set(ref totalCost, value); } }
///
/// 利润
///
public decimal Profit { get => profit; set { Set(ref profit, value); } }
///
/// 利润比
///
public decimal ProfitRaito { get => profitRaito; set { Set(ref profitRaito, value); } }
///
/// 订单数
///
public int OrderCount { get => orderCount; set { Set(ref orderCount, value); } }
///
/// 采购金额
///
public decimal PurchaseAmount { get => purchaseAmount; set { Set(ref purchaseAmount, value); } }
///
/// 销售运费
///
public decimal DeliveryExpressFreight { get => deliveryExpressFreight; set { Set(ref deliveryExpressFreight, value); } }
///
/// 平台扣点
///
public decimal PlatformCommissionAmount { get => platformCommissionAmount; set { Set(ref platformCommissionAmount, value); } }
}
}