接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
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; }
}
}