using System; using System.Collections.Generic; namespace BBWYB.Client.Models { public class ToDayOrderAchievementResponse { /// /// 销售额(用户实付) /// public decimal SaleAmount { get; set; } /// /// 利润 /// public decimal Profit { get; set; } /// /// 利润率 /// public decimal ProfitRaito { get; set; } /// /// 订单数量 /// public int OrderCount { get; set; } /// /// 采购金额 /// public decimal PurchaseAmount { get; set; } /// /// 销售运费 /// public decimal DeliveryExpressFreight { get; set; } /// /// 平台扣点 /// public decimal PlatformCommissionAmount { get; set; } /// /// 总成本 /// public decimal TotalCost { get; set; } /// /// 广告统计(海投,快车,包含SD) /// public decimal AdvCost { get; set; } /// /// 人工成本 /// public decimal EmployeeCost { get; set; } /// /// 税务成本 /// public decimal TaxCost { get; set; } /// /// SD成本 /// public decimal SDCost { get; set; } /// /// 推广花费截至时间 /// public DateTime? PularizeEndDate { get; set; } /// /// 推广成本明细 /// public IList ShoppopularizeList { get; set; } } }