Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcoMycarParkingOrderstatusQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

58 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcoMycarParkingOrderstatusQueryResponse.
/// </summary>
public class AlipayEcoMycarParkingOrderstatusQueryResponse : AopResponse
{
/// <summary>
/// 支付宝交易流水号订单
/// </summary>
[JsonProperty("alipay_order_id")]
public string AlipayOrderId { get; set; }
/// <summary>
/// 车平台订单
/// </summary>
[JsonProperty("car_order_id")]
public string CarOrderId { get; set; }
/// <summary>
/// 设备商订单id
/// </summary>
[JsonProperty("equipment_order_id")]
public string EquipmentOrderId { get; set; }
/// <summary>
/// 支付金额
/// </summary>
[JsonProperty("pay_money")]
public string PayMoney { get; set; }
/// <summary>
/// 支付状态
/// </summary>
[JsonProperty("pay_status")]
public string PayStatus { get; set; }
/// <summary>
/// 支付的时间
/// </summary>
[JsonProperty("pay_time")]
public string PayTime { get; set; }
/// <summary>
/// 支付方式1为支付宝在线缴费2为支付宝代扣缴费
/// </summary>
[JsonProperty("pay_type")]
public string PayType { get; set; }
/// <summary>
/// 返回状态(1为成功,0为失败)
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}