using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// PoiQueryResult Data Structure. /// [Serializable] public class PoiQueryResult : AopObject { /// /// 地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 英文地址 /// [XmlElement("address_en")] public string AddressEn { get; set; } /// /// 当地地址 /// [XmlElement("address_local")] public string AddressLocal { get; set; } /// /// 备用号码 /// [XmlElement("alternative_phone")] public string AlternativePhone { get; set; } /// /// 简介 /// [XmlElement("bios")] public string Bios { get; set; } /// /// 品牌信息 /// [XmlElement("brand_info")] public StructureBrandInfo BrandInfo { get; set; } /// /// 服务时间 /// [XmlElement("business_hour")] public string BusinessHour { get; set; } /// /// 类目 /// [XmlElement("category")] public string Category { get; set; } /// /// 城市 /// [XmlElement("city")] public string City { get; set; } /// /// 商圈 /// [XmlElement("commercial_circle")] public string CommercialCircle { get; set; } /// /// 人均消费 /// [XmlElement("consumption")] public string Consumption { get; set; } /// /// 国家码 /// [XmlElement("country_code")] public string CountryCode { get; set; } /// /// 国家 /// [XmlElement("country_name")] public string CountryName { get; set; } /// /// 描述 /// [XmlElement("description")] public string Description { get; set; } /// /// 扩展信息 /// [XmlElement("extend_map")] public string ExtendMap { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 更新时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 纬度 /// [XmlElement("lat")] public string Lat { get; set; } /// /// 经度 /// [XmlElement("lng")] public string Lng { get; set; } /// /// 当地语言 /// [XmlElement("local_language")] public string LocalLanguage { get; set; } /// /// 本地名 /// [XmlElement("local_name")] public string LocalName { get; set; } /// /// 电话 /// [XmlElement("main_phone")] public string MainPhone { get; set; } /// /// 地名 /// [XmlElement("name")] public string Name { get; set; } /// /// 别名 /// [XmlElement("name_alias")] public string NameAlias { get; set; } /// /// 英文名 /// [XmlElement("name_en")] public string NameEn { get; set; } /// /// 下线详细原因 /// [XmlElement("offline_reason_detail")] public string OfflineReasonDetail { get; set; } /// /// poi状态 /// [XmlElement("open_status")] public long OpenStatus { get; set; } /// /// 开放时间 /// [XmlElement("open_time")] public string OpenTime { get; set; } /// /// 操作类型(0:新增 1:更新) /// [XmlElement("operator_type")] public long OperatorType { get; set; } /// /// 图片地址(,分隔多张) /// [XmlArray("photo_urls")] [XmlArrayItem("string")] public List PhotoUrls { get; set; } /// /// poiId(飞猪端poiId) /// [XmlElement("poi_id")] public long PoiId { get; set; } /// /// 邮编 /// [XmlElement("postal_code")] public string PostalCode { get; set; } /// /// 省 /// [XmlElement("province")] public string Province { get; set; } /// /// 推荐信息 /// [XmlElement("recommend_infos")] public string RecommendInfos { get; set; } /// /// 认领主账号id /// [XmlElement("seller_id")] public long SellerId { get; set; } /// /// 服务详情 /// [XmlElement("service_info")] public StructureServiceInfo ServiceInfo { get; set; } /// /// 支付宝店铺id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 店铺类型 /// [XmlElement("shop_type")] public string ShopType { get; set; } /// /// 外部源唯一id /// [XmlElement("source_biz_id")] public string SourceBizId { get; set; } /// /// 中台门店id /// [XmlElement("store_id")] public long StoreId { get; set; } /// /// 子账号id /// [XmlElement("sub_seller_id")] public long SubSellerId { get; set; } /// /// 手机号 /// [XmlElement("telephone")] public string Telephone { get; set; } /// /// 交通 /// [XmlElement("transport")] public string Transport { get; set; } /// /// 类型 /// [XmlElement("type")] public long Type { get; set; } /// /// 视频url /// [XmlElement("video_url")] public string VideoUrl { get; set; } /// /// 外部url /// [XmlElement("web_site_url")] public string WebSiteUrl { get; set; } } }