using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// CloudbusRoute Data Structure. /// [Serializable] public class CloudbusRoute : AopObject { /// /// 修改类型 /// [XmlElement("action")] public string Action { get; set; } /// /// 线路方向:枚举 up down /// [XmlElement("direction")] public string Direction { get; set; } /// /// 路线id /// [XmlElement("line_id")] public string LineId { get; set; } /// /// 公交路线轨迹 /// [XmlArray("line_lon_lat")] [XmlArrayItem("cloudbus_location")] public List LineLonLat { get; set; } /// /// 线路名称(87 路-上行) /// [XmlElement("line_name")] public string LineName { get; set; } /// /// 运营时间 /// [XmlArray("operation_time")] [XmlArrayItem("string")] public List OperationTime { get; set; } /// /// 票价 /// [XmlElement("price")] public long Price { get; set; } /// /// 站点 /// [XmlArray("stops")] [XmlArrayItem("cloudbus_stop")] public List Stops { get; set; } } }