using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; using System.Collections.Generic; namespace ARW.Model.Vo.Api.GoodsManager.GoodsComments { /// /// 商品详情页评论数展示对象Api /// /// @author lwh /// @date 2023-07-18 /// public class GoodsCommentCountApiVo { /// /// 评价总数 /// public int CommentCount { get; set; } /// /// 描述 : 差评总数 /// public int BadCount { get; set; } /// /// 描述 : 中评总数 /// public int MiddleCount { get; set; } /// /// 描述 : 好评总数 /// public int GoodCount { get; set; } /// /// 描述 : 带图总数 /// public int HasImageCount { get; set; } /// /// 好评率 /// public decimal GoodRate { get; set; } } }