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.
31 lines
730 B
31 lines
730 B
2 years ago
|
namespace SiNan.Model.Dto
|
||
|
{
|
||
|
public class Product360TopStatisticsResponse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 月销量(近30天销量)
|
||
|
/// </summary>
|
||
|
public decimal? MonthSaleCount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 评价数,string类型
|
||
|
/// </summary>
|
||
|
public string EvaluateCount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 累计亏损
|
||
|
/// </summary>
|
||
|
public decimal? TotalDeficit { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 最大亏损阈值
|
||
|
/// </summary>
|
||
|
public decimal? MaxDeficit { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 上架时间
|
||
|
/// </summary>
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
}
|
||
|
}
|