using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TicketDetailInfo Data Structure. /// [Serializable] public class TicketDetailInfo : AopObject { /// /// 总金额,元为单位 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 终点站编码 /// [XmlElement("end_station")] public string EndStation { get; set; } /// /// 终点站中文名称 /// [XmlElement("end_station_name")] public string EndStationName { get; set; } /// /// 票数量 /// [XmlElement("quantity")] public string Quantity { get; set; } /// /// 起点站编码 /// [XmlElement("start_station")] public string StartStation { get; set; } /// /// 起点站中文名称 /// [XmlElement("start_station_name")] public string StartStationName { get; set; } /// /// 订单状态 /// [XmlElement("status")] public string Status { get; set; } /// /// 单价,元为单位 /// [XmlElement("ticket_price")] public string TicketPrice { get; set; } /// /// 票类型 /// [XmlElement("ticket_type")] public string TicketType { get; set; } /// /// 支付宝交易号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }