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