初始提交
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayTradeFastpayRefundQueryModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class AlipayTradeFastpayRefundQueryModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 请求退款接口时,传入的退款请求号,如果在退款请求时未传入,则该值为创建交易时的外部交易号
|
||||
/// </summary>
|
||||
[JsonProperty("out_request_no")]
|
||||
public string OutRequestNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单支付时传入的商户订单号,和支付宝交易号不能同时为空。 trade_no,out_trade_no如果同时存在优先取trade_no
|
||||
/// </summary>
|
||||
[JsonProperty("out_trade_no")]
|
||||
public string OutTradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝交易号,和商户订单号不能同时为空
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user