namespace SiNan.Model.Dto { public class JDXXHistogramResponse { /// /// 访客 /// public decimal? UV { get; set; } /// /// UV百分比 /// public decimal? UVPercent { get; set; } /// /// 销量 /// public decimal? Sales { get; set; } /// /// 销量百分比 /// public decimal? SalesPercent { get; set; } /// /// 花费 /// public decimal? TotalCost { get; set; } /// /// 花费百分比 /// public decimal? TotalCostPercent { get; set; } /// /// 利润 /// public decimal? Profit { get; set; } /// /// 利润百分比 /// public decimal? ProfitPercent { get; set; } public string Sku { get; set; } } }