mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 14:04:32 +08:00
72 lines
2.7 KiB
C#
72 lines
2.7 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /customs/orders 接口的响应。</para>
|
|
/// </summary>
|
|
public class CreateCustomsOrderResponse : WechatTenpayResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置微信商户号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("mchid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("mchid")]
|
|
public string MerchantId { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信 AppId。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("appid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("appid")]
|
|
public string AppId { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置状态码。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("state")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("state")]
|
|
public string State { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置商户订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
|
public string OutTradeNumber { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信支付订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
|
public string TransactionId { get; set; } = default!;
|
|
|
|
/// <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("verify_department")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("verify_department")]
|
|
public string? VerifyDepartment { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置验核机构交易流水号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("verify_department_trade_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("verify_department_trade_id")]
|
|
public string? VerifyDepartmentTradeId { get; set; }
|
|
}
|
|
}
|