You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.6 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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