mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-03-10 00:13:36 +08:00
105 lines
4.1 KiB
C#
105 lines
4.1 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /deposit/refund 接口的请求。</para>
|
|
/// </summary>
|
|
public class CreateDepositRefundRequest : 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>
|
|
/// 获取或设置商户订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
|
public string OutTradeNumber { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信支付订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
|
public string TransactionId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置商户退款单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("out_refund_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("out_refund_no")]
|
|
public string OutRefundNumber { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置订单金额(单位:分)。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("total_fee")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("total_fee")]
|
|
[System.Text.Json.Serialization.JsonNumberHandling(System.Text.Json.Serialization.JsonNumberHandling.AllowReadingFromString)]
|
|
public int TotalFee { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置退款金额(单位:分)。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("refund_fee")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("refund_fee")]
|
|
[System.Text.Json.Serialization.JsonNumberHandling(System.Text.Json.Serialization.JsonNumberHandling.AllowReadingFromString)]
|
|
public int RefundFee { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置退款货币类型。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("refund_fee_type")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("refund_fee_type")]
|
|
public string? RefundFeeType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置退款原因。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("refund_desc")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("refund_desc")]
|
|
public string? Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置退款资金来源。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("refund_account")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("refund_account")]
|
|
public string? RefundAccount { get; set; }
|
|
|
|
/// <summary>
|
|
/// <inheritdoc/>
|
|
/// <para>默认值:<see cref="Constants.SignTypes.HMAC_SHA256"/></para>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sign_type")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sign_type")]
|
|
#pragma warning disable CS8765
|
|
public override string SignType { get; set; } = Constants.SignTypes.HMAC_SHA256;
|
|
#pragma warning restore CS8765
|
|
}
|
|
}
|