mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 19:37:35 +08:00
65 lines
2.7 KiB
C#
65 lines
2.7 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /pay/refundqueryv2 接口的请求。</para>
|
|
/// </summary>
|
|
public class GetPayRefundV2Request : WechatTenpaySignableRequest
|
|
{
|
|
/// <summary>
|
|
/// <inheritdoc/>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("mch_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("mch_id")]
|
|
public override string? MerchantId { get; set; }
|
|
|
|
/// <summary>
|
|
/// <inheritdoc/>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("appid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("appid")]
|
|
public override string? AppId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置子商户号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sub_mch_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_mch_id")]
|
|
public string? SubMerchantId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置子商户 AppId。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sub_appid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_appid")]
|
|
public string? SubAppId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置商户订单号。与字段 <see cref="TransactionId"/>、<see cref="OutRefundNumber"/>、<see cref="RefundId"/> 四选一。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
|
public string? OutTradeNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信支付订单号。与字段 <see cref="OutTradeNumber"/>、<see cref="OutRefundNumber"/>、<see cref="RefundId"/> 四选一。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
|
public string? TransactionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置商户退款单号。与字段 <see cref="OutTradeNumber"/>、<see cref="TransactionId"/>、<see cref="RefundId"/> 四选一。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("out_refund_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("out_refund_no")]
|
|
public string? OutRefundNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信退款单号。与字段 <see cref="OutTradeNumber"/>、<see cref="TransactionId"/>、<see cref="OutRefundNumber"/> 四选一。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("refund_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("refund_id")]
|
|
public string? RefundId { get; set; }
|
|
}
|
|
}
|