Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayTradeCloseResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

22 lines
474 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayTradeCloseResponse.
/// </summary>
public class AlipayTradeCloseResponse : AopResponse
{
/// <summary>
/// 创建交易传入的商户订单号
/// </summary>
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 支付宝交易号
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}