namespace SiNan.Model.Dto { public class Product360TopStatisticsResponse { /// /// 月销量(近30天销量) /// public decimal? MonthSaleCount { get; set; } /// /// 评价数,string类型 /// public string EvaluateCount { get; set; } /// /// 累计亏损 /// public decimal? TotalDeficit { get; set; } /// /// 最大亏损阈值 /// public decimal? MaxDeficit { get; set; } /// /// 上架时间 /// public DateTime? CreateTime { get; set; } } }