You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
561 B
26 lines
561 B
namespace SiNan.Model.Dto
|
|
{
|
|
public class JDXXHistogramResponse
|
|
{
|
|
/// <summary>
|
|
/// 访客
|
|
/// </summary>
|
|
public decimal? UV { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销量
|
|
/// </summary>
|
|
public decimal? Sales { get; set; }
|
|
|
|
/// <summary>
|
|
/// 花费
|
|
/// </summary>
|
|
public decimal? TotalCost { get; set; }
|
|
|
|
/// <summary>
|
|
/// 利润
|
|
/// </summary>
|
|
public decimal? Profit { get; set; }
|
|
public string Sku { get; set; }
|
|
}
|
|
}
|
|
|