Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayTradeCloseResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +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; }
}
}