using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MerchantshopCommentResult Data Structure.
///
[Serializable]
public class MerchantshopCommentResult : AopObject
{
///
/// 评论内容
///
[XmlElement("comment")]
public string Comment { get; set; }
///
/// 评论时间格式"yyyy-MM-dd HH:mm:ss"
///
[XmlElement("comment_time")]
public string CommentTime { get; set; }
///
/// 评论用户的头像url,记录用户评价时头像完整路径
///
[XmlElement("face")]
public string Face { get; set; }
///
/// 评论晒图,多个逗号分隔。使用车主平台接口上传图片地址。
///
[XmlElement("imgs")]
public string Imgs { get; set; }
///
/// 评论用户的昵称
///
[XmlElement("nick_name")]
public string NickName { get; set; }
///
/// 车主平台订单编号
///
[XmlElement("order_no")]
public string OrderNo { get; set; }
///
/// 回复内容
///
[XmlElement("reply")]
public string Reply { get; set; }
///
/// 回复时间,格式"yyyy-MM-dd HH:mm:ss"
///
[XmlElement("reply_time")]
public string ReplyTime { get; set; }
///
/// 评分, 两位小数
///
[XmlElement("score")]
public string Score { get; set; }
///
/// 车主平台门店编码
///
[XmlElement("shop_id")]
public long ShopId { get; set; }
///
/// 评论用户支付宝uid
///
[XmlElement("user_id")]
public string UserId { get; set; }
///
/// 评论的用户名称,敏感数据脱敏处理。
///
[XmlElement("user_name")]
public string UserName { get; set; }
}
}