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

46 lines
1.1 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>
/// AlipayEbppPdeductBillPayStatusResponse.
/// </summary>
public class AlipayEbppPdeductBillPayStatusResponse : AopResponse
{
/// <summary>
/// 支付宝协议流水
/// </summary>
[JsonProperty("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 支付宝流billNo
/// </summary>
[JsonProperty("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 订单的结果码
/// </summary>
[JsonProperty("order_result_code")]
public string OrderResultCode { get; set; }
/// <summary>
/// 订单的结果描述
/// </summary>
[JsonProperty("order_result_msg")]
public string OrderResultMsg { get; set; }
/// <summary>
/// 外部订单流水
/// </summary>
[JsonProperty("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 支付宝订单支付状态。 0未知状态。 1支付成功。 2支付失败。
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}