using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// CommentOpenModel Data Structure.
///
[Serializable]
public class CommentOpenModel : AopObject
{
///
/// 口碑评价id
///
[JsonProperty("comment_id")]
public string CommentId { get; set; }
///
/// 评价发表时间
///
[JsonProperty("comment_publish_time")]
public string CommentPublishTime { get; set; }
///
/// 评价内容,不超过2000字,不区分中英文
///
[JsonProperty("content")]
public string Content { get; set; }
///
/// 评价关联的手艺人id
///
[JsonProperty("craftsman_id")]
public string CraftsmanId { get; set; }
///
/// 评价上传图片,一条评价最多9张图片
///
[JsonProperty("images")]
public List Images { get; set; }
///
/// 评价回复
///
[JsonProperty("reply")]
public CommentReplyOpenModel Reply { get; set; }
///
/// 评分,1-5分,1分最低,5分最高,均为整数
///
[JsonProperty("score")]
public long Score { get; set; }
///
/// 评价对应的门店id
///
[JsonProperty("shop_id")]
public string ShopId { get; set; }
}
}