using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// CloudbusPredictRItem Data Structure. /// [Serializable] public class CloudbusPredictRItem : AopObject { /// /// 站点轨迹 /// [XmlArray("line_lon_lat")] [XmlArrayItem("cloudbus_location")] public List LineLonLat { get; set; } /// /// 运营时间 /// [XmlArray("operation_time")] [XmlArrayItem("string")] public List OperationTime { get; set; } /// /// 线路总客流 /// [XmlElement("route_volume")] public long RouteVolume { get; set; } /// /// 11 /// [XmlArray("stops")] [XmlArrayItem("cloudbus_stop")] public List Stops { get; set; } } }