using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ShopCommentInfo Data Structure. /// [Serializable] public class ShopCommentInfo : AopObject { /// /// 店铺30天平均人气值 /// [XmlElement("avg_popularity")] public string AvgPopularity { get; set; } /// /// avg_popularity字段展示文案 /// [XmlElement("avg_popularity_name")] public string AvgPopularityName { get; set; } /// /// 门店评分,评分越高,门店质量越高 /// [XmlElement("score")] public string Score { get; set; } /// /// 门店星级,0~5,越高,店铺质量越高 /// [XmlElement("star")] public string Star { get; set; } } }