133 lines
3.0 KiB
C#
133 lines
3.0 KiB
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.GoodsManager.GoodsComments
|
|
{
|
|
/// <summary>
|
|
/// 商品评价展示对象
|
|
///
|
|
/// @author admin
|
|
/// @date 2023-07-15
|
|
/// </summary>
|
|
public class GoodsCommentVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int GoodsCommentId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long GoodsCommentGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :店铺guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long ShopGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :店铺名称
|
|
/// </summary>
|
|
public string ShopName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :客户guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long CustomerGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :客户名称
|
|
/// </summary>
|
|
public string CustomerNickname { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :订单guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long OrderGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :商品guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long GoodsGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :商品名称
|
|
/// </summary>
|
|
public string GoodsName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :商品图片
|
|
/// </summary>
|
|
public string GoodsPicture { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :订单商品guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long OrderGoodsGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :评分分数
|
|
/// </summary>
|
|
public float GoodsCommentRating { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :评分类型
|
|
/// </summary>
|
|
public int GoodsCommentRatingType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :评价内容
|
|
/// </summary>
|
|
public string GoodsCommentContent { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :评价图片
|
|
/// </summary>
|
|
public string GoodsCommentImages { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :回复状态
|
|
/// </summary>
|
|
public int GoodsCommentRecoverStatus { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :回复内容
|
|
/// </summary>
|
|
public string GoodsCommentRecoverContent { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :显示状态
|
|
/// </summary>
|
|
public int GoodsCommentStatus { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// </summary>
|
|
public int GoodsCommentSort { get; set; }
|
|
|
|
}
|
|
}
|