using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CloudbusStop Data Structure. /// [Serializable] public class CloudbusStop : AopObject { /// /// 维度 /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 经度 /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 站点id /// [XmlElement("station_id")] public string StationId { get; set; } /// /// 站点名称 /// [XmlElement("station_name")] public string StationName { get; set; } /// /// 站点在线路内的序号 /// [XmlElement("station_num")] public long StationNum { get; set; } /// /// 站间距 /// [XmlElement("station_space")] public long StationSpace { get; set; } /// /// 站点客流 /// [XmlElement("station_volume")] public long StationVolume { get; set; } } }