using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ScheduleTimeItem Data Structure. /// [Serializable] public class ScheduleTimeItem : AopObject { /// /// 起点站发车时刻列表,如07:00:00,07:30:00,…,21:30:00,22:00:00 /// [XmlElement("departure_time_list")] public string DepartureTimeList { get; set; } /// /// 线路方向,0:上行;1:下行 /// [XmlElement("direction")] public string Direction { get; set; } /// /// 线路id /// [XmlElement("line_id")] public string LineId { get; set; } /// /// 车辆上座率分布(Json格式,包含均值、方差、分位点等信息),如{‘min’:0.13, ‘max’:1.0, ‘mean’:0.35, ‘median’:0.40, ’pert_90’:0.78} /// [XmlElement("occu_rate_sts")] public string OccuRateSts { get; set; } /// /// 车次总数 /// [XmlElement("trip_cnt")] public string TripCnt { get; set; } /// /// 乘客等待车次数分布(日均,Json格式),如{‘1’:9999, ‘2’:10, ‘3’:2} /// [XmlElement("wait_bus_sts")] public string WaitBusSts { get; set; } /// /// 乘客等车时间分布(日均,Json格式,包含均值、方差、分位点等信息),如{‘min’:0, ‘max’:10, ‘mean’:5, ‘median’:5, ’pert_90’:9} /// [XmlElement("wait_time_sts")] public string WaitTimeSts { get; set; } } }