using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// GroupRecord Data Structure. /// [Serializable] public class GroupRecord : AopObject { /// /// 本次返回的结果数量 /// [XmlElement("count")] public long Count { get; set; } /// /// 展位ID,finetinyapp:精品小程序 finecard:场景card /// [XmlElement("group_id")] public string GroupId { get; set; } /// /// 显示名称,可为空 /// [XmlElement("group_name")] public string GroupName { get; set; } /// /// 是否还有更多结果 /// [XmlElement("has_more")] public bool HasMore { get; set; } /// /// 命中结果 /// [XmlArray("hits")] [XmlArrayItem("hit")] public List Hits { get; set; } /// /// 更多显示名称 /// [XmlElement("more_link_name")] public string MoreLinkName { get; set; } /// /// 更多url /// [XmlElement("more_link_url")] public string MoreLinkUrl { get; set; } /// /// 搜索命中结果总数量 /// [XmlElement("total_count")] public long TotalCount { get; set; } } }