mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
23 lines
880 B
C#
23 lines
880 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /card/invoice/getauthdata 接口的请求。</para>
|
|
/// </summary>
|
|
public class CardInvoiceGetAuthDataRequest : WechatApiRequest, IInferable<CardInvoiceGetAuthDataRequest, CardInvoiceGetAuthDataResponse>
|
|
{
|
|
/// <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;
|
|
}
|
|
}
|