using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// Roadinter Data Structure. /// [Serializable] public class Roadinter : AopObject { /// /// 输入点相对路口的方位 /// [XmlElement("direction")] public string Direction { get; set; } /// /// 交叉路口到请求坐标的距离,单位是米 /// [XmlElement("distance")] public string Distance { get; set; } /// /// 第一条道路id /// [XmlElement("first_id")] public string FirstId { get; set; } /// /// 第一条道路名称 /// [XmlElement("first_name")] public string FirstName { get; set; } /// /// 路口经纬度 /// [XmlElement("location")] public string Location { get; set; } /// /// 第二条道路id /// [XmlElement("second_id")] public string SecondId { get; set; } /// /// 第二条道路名称 /// [XmlElement("second_name")] public string SecondName { get; set; } } }