mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 19:37:35 +08:00
26 lines
854 B
C#
26 lines
854 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>表示 [POST] /card/invoice/getauthdata 接口的请求。</para>
|
|||
|
/// </summary>
|
|||
|
public class CardInvoiceGetAuthDataRequest : WechatApiRequest
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置订单号。
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonProperty("order_id")]
|
|||
|
[System.Text.Json.Serialization.JsonPropertyName("order_id")]
|
|||
|
public string OrderId { get; set; } = string.Empty;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置开票平台或财政局 AppId。
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonProperty("s_pappid")]
|
|||
|
[System.Text.Json.Serialization.JsonPropertyName("s_pappid")]
|
|||
|
public string SpAppId { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|