namespace SiNan.Model.Dto
{
public class JDXXHistogramResponse
{
///
/// 访客
///
public long? UV { get; set; }
///
/// 销量
///
public long? Sales { get; set; }
///
/// 花费
///
public decimal? TotalCost { get; set; }
///
/// 利润
///
public decimal? Profit { get; set; }
}
}