mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 14:04:32 +08:00
51 lines
1.9 KiB
C#
51 lines
1.9 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/mch/customs/customdeclareredeclare 接口的请求。</para>
|
|
/// </summary>
|
|
public class RedeclareMerchantCustomsCustomDeclarationRequest : WechatTenpaySignableRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置商户订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
|
public string? OutTradeNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信支付订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
|
public string? TransactionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置商户子订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sub_order_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_order_no")]
|
|
public string? SubOrderNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信子订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sub_order_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_order_id")]
|
|
public string? SubOrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置海关。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("customs")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("customs")]
|
|
public string Customs { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置商户海关备案号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("mch_customs_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("mch_customs_no")]
|
|
public string MerchantCustomsNumber { get; set; } = string.Empty;
|
|
}
|
|
}
|