using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// POIinfo Data Structure. /// [Serializable] public class POIinfo : AopObject { /// /// poi地址信息 /// [XmlElement("address")] public string Address { get; set; } /// /// POI所在商圈名称 /// [XmlElement("businessarea")] public string Businessarea { get; set; } /// /// 输入点相对POI的方位 /// [XmlElement("direction")] public string Direction { get; set; } /// /// 该POI到请求坐标的距离 /// [XmlElement("distance")] public string Distance { get; set; } /// /// POI的id /// [XmlElement("id")] public string Id { get; set; } /// /// POI中心点的坐标 /// [XmlElement("location")] public string Location { get; set; } /// /// POI名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 电话号码 /// [XmlElement("tel")] public string Tel { get; set; } /// /// POI的类型 /// [XmlElement("type")] public string Type { get; set; } } }