using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEcoMycarOrderStatusQueryResponse. /// public class AlipayEcoMycarOrderStatusQueryResponse : AopResponse { /// /// 支付宝交易流水号订单 /// [XmlElement("alipay_order_id")] public string AlipayOrderId { get; set; } /// /// 车平台订单 /// [XmlElement("car_order_id")] public string CarOrderId { get; set; } /// /// 设备商订单id /// [XmlElement("equipment_order_id")] public string EquipmentOrderId { get; set; } /// /// 支付金额 /// [XmlElement("pay_money")] public string PayMoney { get; set; } /// /// 支付状态 /// [XmlElement("pay_status")] public string PayStatus { get; set; } /// /// 支付的时间,格式"yyyy-MM-ddHH:mm:ss" /// [XmlElement("pay_time")] public string PayTime { get; set; } /// /// 支付方式(1为支付宝在线缴费,2为支付宝代扣缴费) /// [XmlElement("pay_type")] public string PayType { get; set; } /// /// 返回状态 1为成功 0为失败 /// [XmlElement("status")] public string Status { get; set; } } }