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
515 B
26 lines
515 B
2 years ago
|
namespace SiNan.Model.Dto
|
||
|
{
|
||
|
public class JDXXHistogramResponse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 访客
|
||
|
/// </summary>
|
||
|
public long? UV { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 销量
|
||
|
/// </summary>
|
||
|
public long? Sales { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 花费
|
||
|
/// </summary>
|
||
|
public decimal? TotalCost { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 利润
|
||
|
/// </summary>
|
||
|
public decimal? Profit { get; set; }
|
||
|
}
|
||
|
}
|