using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// Hit Data Structure. /// [Serializable] public class Hit : AopObject { /// /// action跳转参数信息 /// [XmlElement("action_param")] public string ActionParam { get; set; } /// /// 内容类型: alipay:小程序 link:h5页面 /// [XmlElement("action_type")] public string ActionType { get; set; } /// /// 业务id /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 命中的结果的描述 /// [XmlElement("desc")] public string Desc { get; set; } /// /// 扩展信息,json字符串 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 显示的图标 /// [XmlElement("icon")] public string Icon { get; set; } /// /// 命中的结果显示名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 搜索结果的来源方 /// [XmlElement("provider")] public string Provider { get; set; } } }