using System; using System.Collections.Generic; using System.Collections.ObjectModel; namespace BBWY.Client.Models { public class ToDayOrderAchievement : NotifyObject { public ToDayOrderAchievement() { ShoppopularizeList = new ObservableCollection(); } private decimal saleAmount; private decimal profit; private decimal profitRaito; private int orderCount; private decimal purchaseAmount; private decimal deliveryExpressFreight; private decimal platformCommissionAmount; private decimal totalCost; private decimal advCost; private decimal sdCost; private decimal taxCost; private decimal employereCost; private DateTime? pularizeEndDate; public IList ShoppopularizeList { get; set; } /// /// 销售额 /// 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); } } /// /// 广告推广 /// public decimal AdvCost { get => advCost; set { Set(ref advCost, value); } } public decimal SdCost { get => sdCost; set { Set(ref sdCost, value); } } public decimal TaxCost { get => taxCost; set { Set(ref taxCost, value); } } public decimal EmployereCost { get => employereCost; set { Set(ref employereCost, value); } } public DateTime? PularizeEndDate { get => pularizeEndDate; set { Set(ref pularizeEndDate, value); } } } }