mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
23 lines
725 B
C#
23 lines
725 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /taxi-invoice/taxies/{plate_number} 接口的请求。</para>
|
|
/// </summary>
|
|
public class GetTaxiInvoiceTaxiRequest : WechatTenpayRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置车牌号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public string PlateNumber { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置行政区划代码。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public int RegionId { get; set; }
|
|
}
|
|
}
|