feat(tenpayv3): 新增出租车电子发票相关接口

This commit is contained in:
Fu Diwei 2023-03-31 11:26:58 +08:00
parent b55561aef1
commit 770ee8d590
42 changed files with 1789 additions and 7 deletions

View File

@ -42,6 +42,7 @@
| √ | 经营能力:微信先享卡 | 直连商户 | |
| √ | 经营能力:支付即服务 | 直连商户 & 服务商 | |
| √ | 经营能力:点金计划 | 服务商 | |
| √ | 经营能力:出租车电子发票 | 服务商 | |
| √ | 行业方案:电商收付通 | 服务商 | |
| √ | 行业方案:智慧商圈 | 直连商户 & 服务商 | |
| √ | 行业方案:微信支付分停车服务 | 直连商户 & 服务商 | |

View File

@ -2,7 +2,6 @@ using System;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Flurl;
using Flurl.Http;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3

View File

@ -0,0 +1,225 @@
using System;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Flurl.Http;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
{
/// <summary>
/// 为 <see cref="WechatTenpayClient"/> 提供出租车电子发票相关的 API 扩展方法。
/// </summary>
public static class WechatTenpayClientExecuteTaxiInvoiceExtensions
{
#region TaxiCompany
/// <summary>
/// <para>异步调用 [POST] /taxi-invoice/taxi-company/create-taxi-company 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/taxi-company/create-taxi-company.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.CreateTaxiInvoiceTaxiCompanyResponse> ExecuteCreateTaxiInvoiceTaxiCompanyAsync(this WechatTenpayClient client, Models.CreateTaxiInvoiceTaxiCompanyRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Post, "taxi-invoice", "taxi-company", "create-taxi-company");
return await client.SendRequestWithJsonAsync<Models.CreateTaxiInvoiceTaxiCompanyResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
/// <summary>
/// <para>异步调用 [GET] /taxi-invoice/taxi-companies/{company_mchid} 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/taxi-company/query-taxi-company.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.GetTaxiInvoiceTaxiCompanyResponse> ExecuteGetTaxiInvoiceTaxiCompanyAsync(this WechatTenpayClient client, Models.GetTaxiInvoiceTaxiCompanyRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Get, "taxi-invoice", "taxi-companies", request.CompanyMerchantId)
.SetQueryParam("region_id", request.RegionId);
return await client.SendRequestWithJsonAsync<Models.GetTaxiInvoiceTaxiCompanyResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
#endregion
#region Taxi
/// <summary>
/// <para>异步调用 [POST] /taxi-invoice/taxi/update-taxi 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/taxi/update-taxi.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.UpdateTaxiInvoiceTaxiResponse> ExecuteUpdateTaxiInvoiceTaxiAsync(this WechatTenpayClient client, Models.UpdateTaxiInvoiceTaxiRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Post, "taxi-invoice", "taxi", "update-taxi");
return await client.SendRequestWithJsonAsync<Models.UpdateTaxiInvoiceTaxiResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
/// <summary>
/// <para>异步调用 [GET] /taxi-invoice/taxies/{plate_number} 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/taxi/query-taxi.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.GetTaxiInvoiceTaxiResponse> ExecuteGetTaxiInvoiceTaxiAsync(this WechatTenpayClient client, Models.GetTaxiInvoiceTaxiRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Get, "taxi-invoice", "taxies", request.PlateNumber)
.SetQueryParam("region_id", request.RegionId);
return await client.SendRequestWithJsonAsync<Models.GetTaxiInvoiceTaxiResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
#endregion
#region Driver
/// <summary>
/// <para>异步调用 [POST] /taxi-invoice/driver/update-driver 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/driver/update-driver.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.UpdateTaxiInvoiceDriverResponse> ExecuteUpdateTaxiInvoiceDriverAsync(this WechatTenpayClient client, Models.UpdateTaxiInvoiceDriverRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Post, "taxi-invoice", "driver", "update-driver");
return await client.SendRequestWithJsonAsync<Models.UpdateTaxiInvoiceDriverResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
/// <summary>
/// <para>异步调用 [GET] /taxi-invoice/drivers/{driver_license} 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/driver/query-driver.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.GetTaxiInvoiceDriverResponse> ExecuteGetTaxiInvoiceDriverAsync(this WechatTenpayClient client, Models.GetTaxiInvoiceDriverRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Get, "taxi-invoice", "drivers", request.DriverLicenseNumber)
.SetQueryParam("region_id", request.RegionId);
return await client.SendRequestWithJsonAsync<Models.GetTaxiInvoiceDriverResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
#endregion
#region Attendance
/// <summary>
/// <para>异步调用 [POST] /taxi-invoice/attendance/punch 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/attendance/punch-attendance.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.PunchTaxiInvoiceAttendanceResponse> ExecutePunchTaxiInvoiceAttendanceAsync(this WechatTenpayClient client, Models.PunchTaxiInvoiceAttendanceRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Post, "taxi-invoice", "attendance", "punch");
return await client.SendRequestWithJsonAsync<Models.PunchTaxiInvoiceAttendanceResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
#endregion
#region UserTaxiOrder
/// <summary>
/// <para>异步调用 [GET] /taxi-invoice/user-taxi-order/find-by-token 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/user-taxi-order/query-user-taxi-order-by-token.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.GetTaxiInvoiceUserTaxiOrderByTokenResponse> ExecuteGetTaxiInvoiceUserTaxiOrderByTokenAsync(this WechatTenpayClient client, Models.GetTaxiInvoiceUserTaxiOrderByTokenRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Get, "taxi-invoice", "user-taxi-order", "find-by-token")
.SetQueryParam("token", request.Token)
.SetQueryParam("appid", request.AppId)
.SetQueryParam("openid", request.OpenId)
.SetQueryParam("auth_mode", request.AuthMode)
.SetQueryParam("region_id", request.RegionId);
return await client.SendRequestWithJsonAsync<Models.GetTaxiInvoiceUserTaxiOrderByTokenResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
#endregion
#region Card
/// <summary>
/// <para>异步调用 [POST] /taxi-invoice/cards/upload-file 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/taxi-invoice-card/upload-taxi-invoice-card-file.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.UploadTaxiInvoiceCardFileResponse> ExecuteUploadTaxiInvoiceCardFileAsync(this WechatTenpayClient client, Models.UploadTaxiInvoiceCardFileRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Post, "taxi-invoice", "cards", "upload-file");
using var httpContent = Utilities.FileHttpContentBuilder.Build(fileName: "file.pdf", fileBytes: request.FileBytes, fileContentType: "application/pdf", fileMetaJson: client.JsonSerializer.Serialize(request));
return await client.SendRequestAsync<Models.UploadTaxiInvoiceCardFileResponse>(flurlReq, httpContent: httpContent, cancellationToken: cancellationToken);
}
/// <summary>
/// <para>异步调用 [POST] /taxi-invoice/cards 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/docs/partner/apis/taxi-fapiao/taxi-invoice-card/create-taxi-invoice-card.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.CreateTaxiInvoiceCardResponse> ExecuteCreateTaxiInvoiceCardAsync(this WechatTenpayClient client, Models.CreateTaxiInvoiceCardRequest request, CancellationToken cancellationToken = default)
{
if (client is null) throw new ArgumentNullException(nameof(client));
if (request is null) throw new ArgumentNullException(nameof(request));
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Post, "taxi-invoice", "cards");
return await client.SendRequestWithJsonAsync<Models.CreateTaxiInvoiceCardResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
#endregion
}
}

View File

@ -52,7 +52,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
}
/// <summary>
/// 获取或设置品牌主商户号
/// 获取或设置品牌主商户号
/// </summary>
[Newtonsoft.Json.JsonProperty("brand_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("brand_mchid")]

View File

@ -6,7 +6,7 @@
public class CreateBrandProfitSharingOrderResponse : GetBrandProfitSharingOrderByOutOrderNumberResponse
{
/// <summary>
/// 获取或设置品牌主商户号
/// 获取或设置品牌主商户号
/// </summary>
[Newtonsoft.Json.JsonProperty("brand_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("brand_mchid")]

View File

@ -150,7 +150,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
}
/// <summary>
/// 获取或设置从业机构特约商户号
/// 获取或设置从业机构特约商户号
/// </summary>
[Newtonsoft.Json.JsonProperty("sub_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("sub_mchid")]

View File

@ -86,7 +86,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
public string ChannelId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置从业机构特约商户号
/// 获取或设置从业机构特约商户号
/// </summary>
[Newtonsoft.Json.JsonProperty("sub_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("sub_mchid")]

View File

@ -15,7 +15,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
public string ApplicationState { get; set; } = default!;
/// <summary>
/// 获取或设置从业机构特约商户号
/// 获取或设置从业机构特约商户号
/// </summary>
[Newtonsoft.Json.JsonProperty("sub_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("sub_mchid")]

View File

@ -0,0 +1,135 @@
using System;
using System.Globalization;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/attendance/punch 接口的请求。</para>
/// </summary>
public class PunchTaxiInvoiceAttendanceRequest : WechatTenpayRequest
{
internal static class Converters
{
internal class RequestPropertyEventTimeNewtonsoftJsonConverter : Newtonsoft.Json.JsonConverter<DateTimeOffset>
{
internal const string DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.fffzzz";
public override bool CanRead { get { return true; } }
public override bool CanWrite { get { return true; } }
public override DateTimeOffset ReadJson(Newtonsoft.Json.JsonReader reader, Type objectType, DateTimeOffset existingValue, bool hasExistingValue, Newtonsoft.Json.JsonSerializer serializer)
{
switch (reader.TokenType)
{
case Newtonsoft.Json.JsonToken.Null:
{
return existingValue;
}
case Newtonsoft.Json.JsonToken.String:
{
string? value = serializer.Deserialize<string>(reader);
if (string.IsNullOrEmpty(value))
return existingValue;
if (DateTimeOffset.TryParseExact(value, DATETIME_FORMAT, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.None, out var result))
return result;
if (DateTimeOffset.TryParse(value, out result))
return result;
throw new Newtonsoft.Json.JsonSerializationException("Could not parse String '" + value + "' to DateTimeOffset.");
}
case Newtonsoft.Json.JsonToken.Date:
{
reader.DateFormatString = DATETIME_FORMAT;
return serializer.Deserialize<DateTimeOffset>(reader);
}
}
throw new Newtonsoft.Json.JsonSerializationException($"Unexpected token type '{reader.TokenType}' when deserializing. Path '{reader.Path}'.");
}
public override void WriteJson(Newtonsoft.Json.JsonWriter writer, DateTimeOffset value, Newtonsoft.Json.JsonSerializer serializer)
{
writer.WriteValue(value.ToString(DATETIME_FORMAT, DateTimeFormatInfo.InvariantInfo));
}
}
internal class RequestPropertyEventTimeSystemTextJsonConverter : System.Text.Json.Serialization.JsonConverter<DateTimeOffset>
{
internal const string DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.fffzzz";
public override DateTimeOffset Read(ref System.Text.Json.Utf8JsonReader reader, Type typeToConvert, System.Text.Json.JsonSerializerOptions options)
{
switch (reader.TokenType)
{
case System.Text.Json.JsonTokenType.Null:
{
return default!;
}
case System.Text.Json.JsonTokenType.String:
{
string? value = reader.GetString();
if (string.IsNullOrEmpty(value))
return default;
if (DateTimeOffset.TryParseExact(value, DATETIME_FORMAT, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.None, out var result))
return result;
if (DateTimeOffset.TryParse(value, out result))
return result;
throw new System.Text.Json.JsonException("Could not parse String '" + value + "' to DateTimeOffset.");
}
}
throw new System.Text.Json.JsonException($"Unexpected JSON token type '{reader.TokenType}' when reading.");
}
public override void Write(System.Text.Json.Utf8JsonWriter writer, DateTimeOffset value, System.Text.Json.JsonSerializerOptions options)
{
writer.WriteStringValue(value.ToString(DATETIME_FORMAT, DateTimeFormatInfo.InvariantInfo));
}
}
}
/// <summary>
/// 获取或设置车牌号。
/// </summary>
[Newtonsoft.Json.JsonProperty("plate_number")]
[System.Text.Json.Serialization.JsonPropertyName("plate_number")]
public string PlateNumber { get; set; } = string.Empty;
/// <summary>
/// 获取或设置司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_license")]
[System.Text.Json.Serialization.JsonPropertyName("driver_license")]
public string DriverLicenseNumber { get; set; } = string.Empty;
/// <summary>
/// 获取或设置事件时间。
/// </summary>
[Newtonsoft.Json.JsonProperty("event_time")]
[Newtonsoft.Json.JsonConverter(typeof(Converters.RequestPropertyEventTimeNewtonsoftJsonConverter))]
[System.Text.Json.Serialization.JsonPropertyName("event_time")]
[System.Text.Json.Serialization.JsonConverter(typeof(Converters.RequestPropertyEventTimeSystemTextJsonConverter))]
public DateTimeOffset EventTime { get; set; }
/// <summary>
/// 获取或设置事件类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("event_type")]
[System.Text.Json.Serialization.JsonPropertyName("event_type")]
public string EventType { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
}
}

View File

@ -0,0 +1,9 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/attendance/punch 接口的响应。</para>
/// </summary>
public class PunchTaxiInvoiceAttendanceResponse : WechatTenpayResponse
{
}
}

View File

@ -0,0 +1,371 @@
using System;
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/cards 接口的请求。</para>
/// </summary>
public class CreateTaxiInvoiceCardRequest : WechatTenpayRequest
{
public static class Types
{
public class InvoiceCard
{
public static class Types
{
public class Buyer
{
/// <summary>
/// 获取或设置购买方类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("type")]
[System.Text.Json.Serialization.JsonPropertyName("type")]
public string Type { get; set; } = string.Empty;
/// <summary>
/// 获取或设置购买方名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("name")]
[System.Text.Json.Serialization.JsonPropertyName("name")]
public string Name { get; set; } = string.Empty;
/// <summary>
/// 获取或设置纳税人识别号。
/// </summary>
[Newtonsoft.Json.JsonProperty("taxpayer_id")]
[System.Text.Json.Serialization.JsonPropertyName("taxpayer_id")]
public string? TaxPayerId { get; set; }
/// <summary>
/// 获取或设置地址。
/// </summary>
[Newtonsoft.Json.JsonProperty("address")]
[System.Text.Json.Serialization.JsonPropertyName("address")]
public string? Address { get; set; }
/// <summary>
/// 获取或设置电话。
/// </summary>
[Newtonsoft.Json.JsonProperty("telephone")]
[System.Text.Json.Serialization.JsonPropertyName("telephone")]
public string? PhoneNumber { get; set; }
/// <summary>
/// 获取或设置开户银行。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_name")]
[System.Text.Json.Serialization.JsonPropertyName("bank_name")]
public string? BankName { get; set; }
/// <summary>
/// 获取或设置银行账号。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_account")]
[System.Text.Json.Serialization.JsonPropertyName("bank_account")]
public string? BankAccountNumber { get; set; }
}
public class Seller
{
/// <summary>
/// 获取或设置销售方名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("name")]
[System.Text.Json.Serialization.JsonPropertyName("name")]
public string Name { get; set; } = string.Empty;
/// <summary>
/// 获取或设置纳税人识别号。
/// </summary>
[Newtonsoft.Json.JsonProperty("taxpayer_id")]
[System.Text.Json.Serialization.JsonPropertyName("taxpayer_id")]
public string TaxPayerId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置地址。
/// </summary>
[Newtonsoft.Json.JsonProperty("address")]
[System.Text.Json.Serialization.JsonPropertyName("address")]
public string? Address { get; set; }
/// <summary>
/// 获取或设置电话。
/// </summary>
[Newtonsoft.Json.JsonProperty("telephone")]
[System.Text.Json.Serialization.JsonPropertyName("telephone")]
public string? PhoneNumber { get; set; }
/// <summary>
/// 获取或设置开户银行。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_name")]
[System.Text.Json.Serialization.JsonPropertyName("bank_name")]
public string? BankName { get; set; }
/// <summary>
/// 获取或设置银行账号。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_account")]
[System.Text.Json.Serialization.JsonPropertyName("bank_account")]
public string? BankAccountNumber { get; set; }
}
public class Extra
{
/// <summary>
/// 获取或设置收款人。
/// </summary>
[Newtonsoft.Json.JsonProperty("payee")]
[System.Text.Json.Serialization.JsonPropertyName("payee")]
public string? Payee { get; set; }
/// <summary>
/// 获取或设置复核人。
/// </summary>
[Newtonsoft.Json.JsonProperty("reviewer")]
[System.Text.Json.Serialization.JsonPropertyName("reviewer")]
public string? Reviewer { get; set; }
/// <summary>
/// 获取或设置开票人。
/// </summary>
[Newtonsoft.Json.JsonProperty("drawer")]
[System.Text.Json.Serialization.JsonPropertyName("drawer")]
public string Drawer { get; set; } = string.Empty;
}
public class LineItem
{
/// <summary>
/// 获取或设置货物或应税劳务或服务编码。
/// </summary>
[Newtonsoft.Json.JsonProperty("tax_code")]
[System.Text.Json.Serialization.JsonPropertyName("tax_code")]
public string TaxCode { get; set; } = string.Empty;
/// <summary>
/// 获取或设置货物或应税劳务或服务名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("goods_name")]
[System.Text.Json.Serialization.JsonPropertyName("goods_name")]
public string GoodsName { get; set; } = string.Empty;
/// <summary>
/// 获取或设置规格型号。
/// </summary>
[Newtonsoft.Json.JsonProperty("specification")]
[System.Text.Json.Serialization.JsonPropertyName("specification")]
public string? Specification { get; set; }
/// <summary>
/// 获取或设置单位。
/// </summary>
[Newtonsoft.Json.JsonProperty("unit")]
[System.Text.Json.Serialization.JsonPropertyName("unit")]
public string? Unit { get; set; }
/// <summary>
/// 获取或设置数量。
/// </summary>
[Newtonsoft.Json.JsonProperty("quantity")]
[System.Text.Json.Serialization.JsonPropertyName("quantity")]
public int Quantity { get; set; }
/// <summary>
/// 获取或设置单价单位10^-6分
/// </summary>
[Newtonsoft.Json.JsonProperty("unit_price")]
[System.Text.Json.Serialization.JsonPropertyName("unit_price")]
public long UnitPrice { get; set; }
/// <summary>
/// 获取或设置单行金额(单位:分)。
/// </summary>
[Newtonsoft.Json.JsonProperty("amount")]
[System.Text.Json.Serialization.JsonPropertyName("amount")]
public int Amount { get; set; }
/// <summary>
/// 获取或设置单行税额(单位:分)。
/// </summary>
[Newtonsoft.Json.JsonProperty("tax_amount")]
[System.Text.Json.Serialization.JsonPropertyName("tax_amount")]
public int TaxAmount { get; set; }
/// <summary>
/// 获取或设置单行合计(单位:分)。
/// </summary>
[Newtonsoft.Json.JsonProperty("total_amount")]
[System.Text.Json.Serialization.JsonPropertyName("total_amount")]
public int TotalAmount { get; set; }
/// <summary>
/// 获取或设置税率(单位:万分数)。
/// </summary>
[Newtonsoft.Json.JsonProperty("tax_rate")]
[System.Text.Json.Serialization.JsonPropertyName("tax_rate")]
public int TaxRate { get; set; }
/// <summary>
/// 获取或设置税收优惠政策标识。
/// <para>默认值NO_FAVORABLE</para>
/// </summary>
[Newtonsoft.Json.JsonProperty("tax_prefer_mark")]
[System.Text.Json.Serialization.JsonPropertyName("tax_prefer_mark")]
public string TaxPreferMark { get; set; } = "NO_FAVORABLE";
/// <summary>
/// 获取或设置是否是折扣行。
/// </summary>
[Newtonsoft.Json.JsonProperty("discount")]
[System.Text.Json.Serialization.JsonPropertyName("discount")]
public bool IsDiscount { get; set; }
}
}
/// <summary>
/// 获取或设置发票文件 MediaId。
/// </summary>
[Newtonsoft.Json.JsonProperty("fapiao_media_id")]
[System.Text.Json.Serialization.JsonPropertyName("fapiao_media_id")]
public string InvoiceMediaId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置发票号码。
/// </summary>
[Newtonsoft.Json.JsonProperty("fapiao_number")]
[System.Text.Json.Serialization.JsonPropertyName("fapiao_number")]
public string InvoiceNumber { get; set; } = string.Empty;
/// <summary>
/// 获取或设置发票代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("fapiao_code")]
[System.Text.Json.Serialization.JsonPropertyName("fapiao_code")]
public string InvoiceCode { get; set; } = string.Empty;
/// <summary>
/// 获取或设置开票时间。
/// </summary>
[Newtonsoft.Json.JsonProperty("fapiao_time")]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.RFC3339DateTimeOffsetConverter))]
[System.Text.Json.Serialization.JsonPropertyName("fapiao_time")]
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.RFC3339DateTimeOffsetConverter))]
public DateTimeOffset InvoiceTime { get; set; }
/// <summary>
/// 获取或设置校验码。
/// </summary>
[Newtonsoft.Json.JsonProperty("check_code")]
[System.Text.Json.Serialization.JsonPropertyName("check_code")]
public string CheckCode { get; set; } = string.Empty;
/// <summary>
/// 获取或设置密码。
/// </summary>
[Newtonsoft.Json.JsonProperty("password")]
[System.Text.Json.Serialization.JsonPropertyName("password")]
public string Password { get; set; } = string.Empty;
/// <summary>
/// 获取或设置总价税合计(单位:分)。
/// </summary>
[Newtonsoft.Json.JsonProperty("total_amount")]
[System.Text.Json.Serialization.JsonPropertyName("total_amount")]
public int TotalAmount { get; set; }
/// <summary>
/// 获取或设置总税额(单位:分)。
/// </summary>
[Newtonsoft.Json.JsonProperty("tax_amount")]
[System.Text.Json.Serialization.JsonPropertyName("tax_amount")]
public int TaxAmount { get; set; }
/// <summary>
/// 获取或设置总金额(单位:分)。
/// </summary>
[Newtonsoft.Json.JsonProperty("amount")]
[System.Text.Json.Serialization.JsonPropertyName("amount")]
public int Amount { get; set; }
/// <summary>
/// 获取或设置购买方信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("buyer_information")]
[System.Text.Json.Serialization.JsonPropertyName("buyer_information")]
public Types.Buyer Buyer { get; set; } = new Types.Buyer();
/// <summary>
/// 获取或设置销售方信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("seller_information")]
[System.Text.Json.Serialization.JsonPropertyName("seller_information")]
public Types.Seller Seller { get; set; } = new Types.Seller();
/// <summary>
/// 获取或设置额外信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("extra_information")]
[System.Text.Json.Serialization.JsonPropertyName("extra_information")]
public Types.Extra Extra { get; set; } = new Types.Extra();
/// <summary>
/// 获取或设置发票行列表。
/// </summary>
[Newtonsoft.Json.JsonProperty("items")]
[System.Text.Json.Serialization.JsonPropertyName("items")]
public IList<Types.LineItem>? LineItemList { get; set; }
/// <summary>
/// 获取或设置备注信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("remark")]
[System.Text.Json.Serialization.JsonPropertyName("remark")]
public string? Remark { get; set; }
}
}
/// <summary>
/// 获取或设置获取乘客行程单详情的凭证。
/// </summary>
[Newtonsoft.Json.JsonProperty("token")]
[System.Text.Json.Serialization.JsonPropertyName("token")]
public string Token { get; set; } = string.Empty;
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("company_mchid")]
public string CompanyMerchantId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置微信 AppId。
/// </summary>
[Newtonsoft.Json.JsonProperty("appid")]
[System.Text.Json.Serialization.JsonPropertyName("appid")]
public string AppId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置用户的 OpenId。
/// </summary>
[Newtonsoft.Json.JsonProperty("openid")]
[System.Text.Json.Serialization.JsonPropertyName("openid")]
public string OpenId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置发票卡券信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("fapiao_card_information")]
[System.Text.Json.Serialization.JsonPropertyName("fapiao_card_information")]
public Types.InvoiceCard InvoiceCard { get; set; } = new Types.InvoiceCard();
}
}

View File

@ -0,0 +1,9 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/cards 接口的响应。</para>
/// </summary>
public class CreateTaxiInvoiceCardResponse : WechatTenpayResponse
{
}
}

View File

@ -0,0 +1,45 @@
using System;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/cards/upload-file 接口的请求。</para>
/// </summary>
public class UploadTaxiInvoiceCardFileRequest : WechatTenpayRequest
{
/// <summary>
/// 获取或设置文件字节数组。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public byte[] FileBytes { get; set; } = Array.Empty<byte>();
/// <summary>
/// 获取或设置文件内容哈希算法。
/// </summary>
[Newtonsoft.Json.JsonProperty("digest_algorithm")]
[System.Text.Json.Serialization.JsonPropertyName("digest_algorithm")]
public string FileHashAlgorithm { get; set; } = string.Empty;
/// <summary>
/// 获取或设置文件内容哈希值。
/// </summary>
[Newtonsoft.Json.JsonProperty("digest")]
[System.Text.Json.Serialization.JsonPropertyName("digest")]
public string FileHashValue { get; set; } = string.Empty;
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("company_mchid")]
public string CompanyMerchantId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
}
}

View File

@ -0,0 +1,15 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/cards/upload-file 接口的响应。</para>
/// </summary>
public class UploadTaxiInvoiceCardFileResponse : WechatTenpayResponse
{
/// <summary>
/// 获取或设置发票文件 MediaId。
/// </summary>
[Newtonsoft.Json.JsonProperty("fapiao_media_id")]
[System.Text.Json.Serialization.JsonPropertyName("fapiao_media_id")]
public string InvoiceMediaId { get; set; } = default!;
}
}

View File

@ -0,0 +1,22 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [GET] /taxi-invoice/drivers/{driver_license} 接口的请求。</para>
/// </summary>
public class GetTaxiInvoiceDriverRequest : WechatTenpayRequest
{
/// <summary>
/// 获取或设置司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public string DriverLicenseNumber { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public int RegionId { get; set; }
}
}

View File

@ -0,0 +1,118 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [GET] /taxi-invoice/drivers/{driver_license} 接口的响应。</para>
/// </summary>
public class GetTaxiInvoiceDriverResponse : WechatTenpayResponse
{
public static class Types
{
public class Photo
{
public static class Types
{
public class Digest
{
/// <summary>
/// 获取或设置哈希类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("hash_type")]
[System.Text.Json.Serialization.JsonPropertyName("hash_type")]
public string HashType { get; set; } = default!;
/// <summary>
/// 获取或设置哈希值。
/// </summary>
[Newtonsoft.Json.JsonProperty("hash_value")]
[System.Text.Json.Serialization.JsonPropertyName("hash_value")]
public string HashValue { get; set; } = default!;
}
}
/// <summary>
/// 获取或设置照片类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_type")]
[System.Text.Json.Serialization.JsonPropertyName("photo_type")]
public string Type { get; set; } = default!;
/// <summary>
/// 获取或设置照片信息摘要信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_digest")]
[System.Text.Json.Serialization.JsonPropertyName("photo_digest")]
public Types.Digest? Digest { get; set; }
/// <summary>
/// 获取或设置照片 URL。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_url")]
[System.Text.Json.Serialization.JsonPropertyName("photo_url")]
public string? PhotoUrl { get; set; }
/// <summary>
/// 获取或设置经 Base64 编码的照片数据。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_data")]
[System.Text.Json.Serialization.JsonPropertyName("photo_data")]
public string? EncodingPhotoData { get; set; }
}
}
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("company_mchid")]
public string CompanyMerchantId { get; set; } = default!;
/// <summary>
/// 获取或设置公司名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_name")]
[System.Text.Json.Serialization.JsonPropertyName("company_name")]
public string CompanyName { get; set; } = default!;
/// <summary>
/// 获取或设置司机姓名。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_name")]
[System.Text.Json.Serialization.JsonPropertyName("driver_name")]
public string DriverName { get; set; } = default!;
/// <summary>
/// 获取或设置司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_license")]
[System.Text.Json.Serialization.JsonPropertyName("driver_license")]
public string DriverLicenseNumber { get; set; } = default!;
/// <summary>
/// 获取或设置司机类别。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_category")]
[System.Text.Json.Serialization.JsonPropertyName("driver_category")]
public string DriverCategory { get; set; } = default!;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置岗位状态。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_state")]
[System.Text.Json.Serialization.JsonPropertyName("driver_state")]
public string? DriverState { get; set; }
/// <summary>
/// 获取或设置司机头像信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_photo")]
[System.Text.Json.Serialization.JsonPropertyName("driver_photo")]
public Types.Photo? DriverPhoto { get; set; }
}
}

View File

@ -0,0 +1,130 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/driver/update-driver 接口的请求。</para>
/// </summary>
[WechatTenpaySensitive]
public class UpdateTaxiInvoiceDriverRequest : WechatTenpayRequest
{
public static class Types
{
public class Photo
{
public static class Types
{
public class Digest
{
/// <summary>
/// 获取或设置哈希类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("hash_type")]
[System.Text.Json.Serialization.JsonPropertyName("hash_type")]
public string HashType { get; set; } = string.Empty;
/// <summary>
/// 获取或设置哈希值。
/// </summary>
[Newtonsoft.Json.JsonProperty("hash_value")]
[System.Text.Json.Serialization.JsonPropertyName("hash_value")]
public string HashValue { get; set; } = string.Empty;
}
}
/// <summary>
/// 获取或设置照片类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_type")]
[System.Text.Json.Serialization.JsonPropertyName("photo_type")]
public string Type { get; set; } = string.Empty;
/// <summary>
/// 获取或设置照片信息摘要信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_digest")]
[System.Text.Json.Serialization.JsonPropertyName("photo_digest")]
public Types.Digest? Digest { get; set; }
/// <summary>
/// 获取或设置照片 URL。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_url")]
[System.Text.Json.Serialization.JsonPropertyName("photo_url")]
public string? PhotoUrl { get; set; }
/// <summary>
/// 获取或设置经 Base64 编码的照片数据。
/// </summary>
[Newtonsoft.Json.JsonProperty("photo_icon")]
[System.Text.Json.Serialization.JsonPropertyName("photo_icon")]
public string? EncodingPhotoData { get; set; }
}
}
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("mchid")]
[System.Text.Json.Serialization.JsonPropertyName("mchid")]
public string CompanyMerchantId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置公司名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_name")]
[System.Text.Json.Serialization.JsonPropertyName("company_name")]
public string CompanyName { get; set; } = string.Empty;
/// <summary>
/// 获取或设置司机姓名(需使用平台公钥/证书加密)。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_name")]
[System.Text.Json.Serialization.JsonPropertyName("driver_name")]
[WechatTenpaySensitiveProperty(scheme: Constants.SignSchemes.WECHATPAY2_RSA_2048_WITH_SHA256, algorithm: Constants.EncryptionAlgorithms.RSA_2048_ECB_PKCS8_OAEP_WITH_SHA1_AND_MGF1)]
[WechatTenpaySensitiveProperty(scheme: Constants.SignSchemes.WECHATPAY2_SM2_WITH_SM3, algorithm: Constants.EncryptionAlgorithms.SM2_C1C3C2_ASN1)]
public string DriverName { get; set; } = string.Empty;
/// <summary>
/// 获取或设置司机身份证号(需使用平台公钥/证书加密)。
/// </summary>
[Newtonsoft.Json.JsonProperty("id_card_number")]
[System.Text.Json.Serialization.JsonPropertyName("id_card_number")]
[WechatTenpaySensitiveProperty(scheme: Constants.SignSchemes.WECHATPAY2_RSA_2048_WITH_SHA256, algorithm: Constants.EncryptionAlgorithms.RSA_2048_ECB_PKCS8_OAEP_WITH_SHA1_AND_MGF1)]
[WechatTenpaySensitiveProperty(scheme: Constants.SignSchemes.WECHATPAY2_SM2_WITH_SM3, algorithm: Constants.EncryptionAlgorithms.SM2_C1C3C2_ASN1)]
public string DriverIdCardNumber { get; set; } = string.Empty;
/// <summary>
/// 获取或设置司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_license")]
[System.Text.Json.Serialization.JsonPropertyName("driver_license")]
public string DriverLicenseNumber { get; set; } = string.Empty;
/// <summary>
/// 获取或设置司机类别。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_category")]
[System.Text.Json.Serialization.JsonPropertyName("driver_category")]
public string DriverCategory { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置岗位状态。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_status")]
[System.Text.Json.Serialization.JsonPropertyName("driver_status")]
public string? DriverState { get; set; }
/// <summary>
/// 获取或设置司机头像信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_photo")]
[System.Text.Json.Serialization.JsonPropertyName("driver_photo")]
public Types.Photo? DriverPhoto { get; set; }
}
}

View File

@ -0,0 +1,9 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/driver/update-driver 接口的响应。</para>
/// </summary>
public class UpdateTaxiInvoiceDriverResponse : WechatTenpayResponse
{
}
}

View File

@ -0,0 +1,22 @@
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; }
}
}

View File

@ -0,0 +1,64 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [GET] /taxi-invoice/taxies/{plate_number} 接口的响应。</para>
/// </summary>
public class GetTaxiInvoiceTaxiResponse : WechatTenpayResponse
{
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("company_mchid")]
public string CompanyMerchantId { get; set; } = default!;
/// <summary>
/// 获取或设置公司名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_name")]
[System.Text.Json.Serialization.JsonPropertyName("company_name")]
public string CompanyName { get; set; } = default!;
/// <summary>
/// 获取或设置车牌号。
/// </summary>
[Newtonsoft.Json.JsonProperty("plate_number")]
[System.Text.Json.Serialization.JsonPropertyName("plate_number")]
public string PlateNumber { get; set; } = default!;
/// <summary>
/// 获取或设置主班司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("main_license")]
[System.Text.Json.Serialization.JsonPropertyName("main_license")]
public string? MainLicenseNumber { get; set; }
/// <summary>
/// 获取或设置副班司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("deputy_license")]
[System.Text.Json.Serialization.JsonPropertyName("deputy_license")]
public string? DeputyLicenseNumber { get; set; }
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置出租车状态。
/// </summary>
[Newtonsoft.Json.JsonProperty("taxi_state")]
[System.Text.Json.Serialization.JsonPropertyName("taxi_state")]
public string? TaxiState { get; set; }
/// <summary>
/// 获取或设置是否支持开票。
/// </summary>
[Newtonsoft.Json.JsonProperty("support_invoice")]
[System.Text.Json.Serialization.JsonPropertyName("support_invoice")]
public bool IsSupportInvoice { get; set; }
}
}

View File

@ -0,0 +1,64 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/taxi/update-taxi 接口的请求。</para>
/// </summary>
public class UpdateTaxiInvoiceTaxiRequest : WechatTenpayRequest
{
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("mchid")]
[System.Text.Json.Serialization.JsonPropertyName("mchid")]
public string CompanyMerchantId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置公司名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_name")]
[System.Text.Json.Serialization.JsonPropertyName("company_name")]
public string CompanyName { get; set; } = string.Empty;
/// <summary>
/// 获取或设置车牌号。
/// </summary>
[Newtonsoft.Json.JsonProperty("plate_number")]
[System.Text.Json.Serialization.JsonPropertyName("plate_number")]
public string PlateNumber { get; set; } = string.Empty;
/// <summary>
/// 获取或设置主班司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("main_license")]
[System.Text.Json.Serialization.JsonPropertyName("main_license")]
public string? MainLicenseNumber { get; set; }
/// <summary>
/// 获取或设置副班司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("deputy_license")]
[System.Text.Json.Serialization.JsonPropertyName("deputy_license")]
public string? DeputyLicenseNumber { get; set; }
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置出租车状态。
/// </summary>
[Newtonsoft.Json.JsonProperty("taxi_state")]
[System.Text.Json.Serialization.JsonPropertyName("taxi_state")]
public string? TaxiState { get; set; }
/// <summary>
/// 获取或设置开票标记。
/// </summary>
[Newtonsoft.Json.JsonProperty("invoice_flag")]
[System.Text.Json.Serialization.JsonPropertyName("invoice_flag")]
public string InvoiceFlag { get; set; } = string.Empty;
}
}

View File

@ -0,0 +1,9 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/taxi/update-taxi 接口的响应。</para>
/// </summary>
public class UpdateTaxiInvoiceTaxiResponse : WechatTenpayResponse
{
}
}

View File

@ -0,0 +1,85 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/taxi-company/create-taxi-company 接口的请求。</para>
/// </summary>
public class CreateTaxiInvoiceTaxiCompanyRequest : WechatTenpayRequest
{
/// <summary>
/// 获取或设置企业类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("enterprise_type")]
[System.Text.Json.Serialization.JsonPropertyName("enterprise_type")]
public string EnterpriseType { get; set; } = string.Empty;
/// <summary>
/// 获取或设置公司名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_name")]
[System.Text.Json.Serialization.JsonPropertyName("company_name")]
public string? CompanyName { get; set; }
/// <summary>
/// 获取或设置公司简称。
/// </summary>
[Newtonsoft.Json.JsonProperty("short_name")]
[System.Text.Json.Serialization.JsonPropertyName("short_name")]
public string? ShortName { get; set; }
/// <summary>
/// 获取或设置税号。
/// </summary>
[Newtonsoft.Json.JsonProperty("tax_id")]
[System.Text.Json.Serialization.JsonPropertyName("tax_id")]
public string TaxId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置企业法人姓名。
/// </summary>
[Newtonsoft.Json.JsonProperty("legal_person")]
[System.Text.Json.Serialization.JsonPropertyName("legal_person")]
public string LegalPerson { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置公司地址。
/// </summary>
[Newtonsoft.Json.JsonProperty("address")]
[System.Text.Json.Serialization.JsonPropertyName("address")]
public string Address { get; set; } = string.Empty;
/// <summary>
/// 获取或设置公司电话。
/// </summary>
[Newtonsoft.Json.JsonProperty("phone")]
[System.Text.Json.Serialization.JsonPropertyName("phone")]
public string? PhoneNumber { get; set; }
/// <summary>
/// 获取或设置开户银行。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_name")]
[System.Text.Json.Serialization.JsonPropertyName("bank_name")]
public string? BankName { get; set; }
/// <summary>
/// 获取或设置银行账号。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_account")]
[System.Text.Json.Serialization.JsonPropertyName("bank_account")]
public string? BankAccountNumber { get; set; }
/// <summary>
/// 获取或设置开票渠道。
/// </summary>
[Newtonsoft.Json.JsonProperty("invoice_mode")]
[System.Text.Json.Serialization.JsonPropertyName("invoice_mode")]
public string InvoiceMode { get; set; } = string.Empty;
}
}

View File

@ -0,0 +1,22 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [POST] /taxi-invoice/taxi-company/create-taxi-company 接口的响应。</para>
/// </summary>
public class CreateTaxiInvoiceTaxiCompanyResponse : WechatTenpayResponse
{
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("mchid")]
[System.Text.Json.Serialization.JsonPropertyName("mchid")]
public string CompanyMerchantId { get; set; } = default!;
/// <summary>
/// 获取或设置公司名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_name")]
[System.Text.Json.Serialization.JsonPropertyName("company_name")]
public string CompanyName { get; set; } = default!;
}
}

View File

@ -0,0 +1,22 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [GET] /taxi-invoice/taxi-companies/{company_mchid} 接口的请求。</para>
/// </summary>
public class GetTaxiInvoiceTaxiCompanyRequest : WechatTenpayRequest
{
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public string CompanyMerchantId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public int RegionId { get; set; }
}
}

View File

@ -0,0 +1,92 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [GET] /taxi-invoice/taxi-companies/{company_mchid} 接口的响应。</para>
/// </summary>
public class GetTaxiInvoiceTaxiCompanyResponse : WechatTenpayResponse
{
/// <summary>
/// 获取或设置公司商户号。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_mchid")]
[System.Text.Json.Serialization.JsonPropertyName("company_mchid")]
public string CompanyMerchantId { get; set; } = default!;
/// <summary>
/// 获取或设置企业类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("enterprise_type")]
[System.Text.Json.Serialization.JsonPropertyName("enterprise_type")]
public string EnterpriseType { get; set; } = default!;
/// <summary>
/// 获取或设置公司名称。
/// </summary>
[Newtonsoft.Json.JsonProperty("company_name")]
[System.Text.Json.Serialization.JsonPropertyName("company_name")]
public string CompanyName { get; set; } = default!;
/// <summary>
/// 获取或设置公司简称。
/// </summary>
[Newtonsoft.Json.JsonProperty("short_name")]
[System.Text.Json.Serialization.JsonPropertyName("short_name")]
public string ShortName { get; set; } = default!;
/// <summary>
/// 获取或设置税号。
/// </summary>
[Newtonsoft.Json.JsonProperty("tax_id")]
[System.Text.Json.Serialization.JsonPropertyName("tax_id")]
public string TaxId { get; set; } = default!;
/// <summary>
/// 获取或设置企业法人姓名。
/// </summary>
[Newtonsoft.Json.JsonProperty("legal_person")]
[System.Text.Json.Serialization.JsonPropertyName("legal_person")]
public string LegalPerson { get; set; } = default!;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置公司地址。
/// </summary>
[Newtonsoft.Json.JsonProperty("address")]
[System.Text.Json.Serialization.JsonPropertyName("address")]
public string Address { get; set; } = default!;
/// <summary>
/// 获取或设置公司电话。
/// </summary>
[Newtonsoft.Json.JsonProperty("phone")]
[System.Text.Json.Serialization.JsonPropertyName("phone")]
public string? PhoneNumber { get; set; }
/// <summary>
/// 获取或设置开户银行。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_name")]
[System.Text.Json.Serialization.JsonPropertyName("bank_name")]
public string? BankName { get; set; }
/// <summary>
/// 获取或设置银行账号。
/// </summary>
[Newtonsoft.Json.JsonProperty("bank_account")]
[System.Text.Json.Serialization.JsonPropertyName("bank_account")]
public string? BankAccountNumber { get; set; }
/// <summary>
/// 获取或设置开票渠道。
/// </summary>
[Newtonsoft.Json.JsonProperty("invoice_mode")]
[System.Text.Json.Serialization.JsonPropertyName("invoice_mode")]
public string InvoiceMode { get; set; } = default!;
}
}

View File

@ -0,0 +1,43 @@
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [GET] /taxi-invoice/user-taxi-order/find-by-token 接口的请求。</para>
/// </summary>
public class GetTaxiInvoiceUserTaxiOrderByTokenRequest : WechatTenpayRequest
{
/// <summary>
/// 获取或设置获取乘客行程单详情的凭证。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public string Token { get; set; } = string.Empty;
/// <summary>
/// 获取或设置微信 AppId。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public string AppId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置用户的 OpenId。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public string OpenId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置授权模式。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public string AuthMode { get; set; } = string.Empty;
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public int? RegionId { get; set; }
}
}

View File

@ -0,0 +1,63 @@
using System;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
{
/// <summary>
/// <para>表示 [GET] /taxi-invoice/user-taxi-order/find-by-token 接口的响应。</para>
/// </summary>
public class GetTaxiInvoiceUserTaxiOrderByTokenResponse : WechatTenpayResponse
{
/// <summary>
/// 获取或设置车牌号。
/// </summary>
[Newtonsoft.Json.JsonProperty("plate_number")]
[System.Text.Json.Serialization.JsonPropertyName("plate_number")]
public string PlateNumber { get; set; } = default!;
/// <summary>
/// 获取或设置司机资格证号。
/// </summary>
[Newtonsoft.Json.JsonProperty("driver_license")]
[System.Text.Json.Serialization.JsonPropertyName("driver_license")]
public string DriverLicenseNumber { get; set; } = default!;
/// <summary>
/// 获取或设置上车时间。
/// </summary>
[Newtonsoft.Json.JsonProperty("up_time")]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.RFC3339DateTimeOffsetConverter))]
[System.Text.Json.Serialization.JsonPropertyName("up_time")]
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.RFC3339DateTimeOffsetConverter))]
public DateTimeOffset UpTime { get; set; }
/// <summary>
/// 获取或设置行政区划代码。
/// </summary>
[Newtonsoft.Json.JsonProperty("region_id")]
[System.Text.Json.Serialization.JsonPropertyName("region_id")]
public int RegionId { get; set; }
/// <summary>
/// 获取或设置乘客行程单来源。
/// </summary>
[Newtonsoft.Json.JsonProperty("source")]
[System.Text.Json.Serialization.JsonPropertyName("source")]
public string Source { get; set; } = default!;
/// <summary>
/// 获取或设置付款时间。
/// </summary>
[Newtonsoft.Json.JsonProperty("pay_time")]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.RFC3339NullableDateTimeOffsetConverter))]
[System.Text.Json.Serialization.JsonPropertyName("pay_time")]
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.RFC3339NullableDateTimeOffsetConverter))]
public DateTimeOffset? PayTime { get; set; }
/// <summary>
/// 获取或设置付款金额(单位:分)。
/// </summary>
[Newtonsoft.Json.JsonProperty("pay_amount")]
[System.Text.Json.Serialization.JsonPropertyName("pay_amount")]
public int? PayAmount { get; set; }
}
}

View File

@ -15,7 +15,7 @@
<PackageProjectUrl>https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat</PackageProjectUrl>
<PackageTags>Flurl.Http Wechat Weixin MicroMessage Tenpay WechatPay WeixinPay Wxpay 微信 微信支付 微信商户</PackageTags>
<Version>2.16.0</Version>
<Description>基于 Flurl.Http 的微信支付 API v3 版客户端,支持直连商户、服务商模式,支持基础支付、代金券、商家券、委托营销、消费卡、支付有礼、银行定向促活、微信支付分、微信先享卡、支付即服务、点金计划、智慧商圈、电商收付通、二级商户进件、小微商户进件、消费者投诉、商户违规通知、批量转账到零钱、银行组件、海关报关、融合钱包、微工卡等功能。</Description>
<Description>基于 Flurl.Http 的微信支付 API v3 版客户端,支持直连商户、服务商模式,支持基础支付、代金券、商家券、委托营销、消费卡、支付有礼、银行定向促活、微信支付分、微信先享卡、支付即服务、点金计划、智慧商圈、电商收付通、二级商户进件、小微商户进件、消费者投诉、商户违规通知、批量转账到零钱、银行组件、海关报关、融合钱包、微工卡、电子发票等功能。</Description>
<Authors>Fu Diwei</Authors>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git</RepositoryUrl>

View File

@ -0,0 +1,7 @@
{
"plate_number": "粤B12345",
"driver_license": "6298416",
"event_time": "2019-12-01T12:00:00.000+08:00",
"event_type": "SIGN_IN",
"region_id": 510100
}

View File

@ -0,0 +1,57 @@
{
"company_mchid": "1900000109",
"token": "ESvqG19gjw0qiiy1eeRA4VusLrOmIYQOMJ8rXX2V-ztUUuQvu_YBEZg9FAht0Y15r71mft9rcaMIjn7y6x0KSg",
"appid": "wxb1170446a4c0a5a2",
"openid": "oUypO5aQ1oOCaSiNZUpT5kxxJHuc",
"region_id": 310100,
"fapiao_card_information": {
"fapiao_media_id": "ASNFZ4mrze/+3LqYdlQyEA==",
"fapiao_number": "12897794",
"fapiao_code": "044001911211",
"fapiao_time": "2020-07-01T12:00:00+08:00",
"check_code": "69001808340631374774",
"password": "006>299-375/326>2+7/*0-+<351059<80<4*/5>+<11631+*3030/5*37+/-243159658+013>3409*044>4-/1+/9->*>69501*6++1997--21",
"total_amount": 382895,
"tax_amount": 44050,
"amount": 338845,
"buyer_information": {
"type": "CORPORATION",
"name": "深圳市南山区测试企业",
"taxpayer_id": "202003261233701778",
"address": "深圳市南山区深南大道10000号",
"telephone": "075512345678",
"bank_name": "测试银行",
"bank_account": "62001234567890"
},
"seller_information": {
"name": "深圳市南山区测试公司",
"taxpayer_id": "202003261233701778",
"address": "深圳市南山区深南大道10000号",
"telephone": "075512345678",
"bank_name": "测试银行",
"bank_account": "62001234567890"
},
"extra_information": {
"payee": "张三",
"reviewer": "李四",
"drawer": "王五"
},
"items": [
{
"tax_code": "3010101020203000000",
"goods_name": "出租汽车客运服务",
"specification": "A4",
"unit": "次",
"quantity": 100000000,
"unit_price": 380442000000,
"amount": 380442,
"tax_amount": 49458,
"total_amount": 429900,
"tax_rate": 1300,
"tax_prefer_mark": "NO_FAVORABLE",
"discount": false
}
],
"remark": "备注"
}
}

View File

@ -0,0 +1,6 @@
{
"company_mchid": "1900000109",
"digest": "addca90a6a290b9642dbaccffdf01e8c22aa348940b2e96754169ba08c19e5db",
"digest_algorithm": "DIGEST_ALGORITHM_SM3",
"region_id": 310100
}

View File

@ -0,0 +1,3 @@
{
"fapiao_media_id": "ASNFZ4mrze/+3LqYdlQyEA=="
}

View File

@ -0,0 +1,18 @@
{
"driver_name": "OpldWegML3fJ3/U5L6av0bU6GcIOaOhXf2UDYKD8aZByMIav4gGrxjcPPk/7rz7HJ1MOugpoI1KMG8nANKIGtyA75ZM7qM16j16CT0VUtmZMo2nV2/3x/058hpAOORYwkl2g/tOck3MgVwTj9ZTvq6s7wrWomyi+SY04APUv4dfFrUvfbktxSi9JI37tSIP5rXD0Lq35KCZLR0aIyVlBs/MqmAhdQ1klK+kKY2VvC2/DmIY0BmpV/o745eOjWwtlS0PzG7BQ3JYUqhtmz2SawsVeHk9sm1wwPUXFM1ssRN/t2DrNLxVUb77DCnz421UAD7US5TWiL5sVnQSz/wvsvQ==",
"company_name": "深圳市未来有限公司",
"company_mchid": "1900000109",
"driver_license": "6298416",
"driver_category": "MAIN",
"driver_photo": {
"photo_type": "PHOTO_URL",
"photo_digest": {
"hash_type": "MD5",
"hash_value": "e10adc3949ba59abbe56e057f20f883e"
},
"photo_url": "http://www.abc.com/driver.icon",
"photo_data": "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"
},
"region_id": 510100,
"driver_state": "ACTIVE"
}

View File

@ -0,0 +1,19 @@
{
"driver_name": "OpldWegML3fJ3/U5L6av0bU6GcIOaOhXf2UDYKD8aZByMIav4gGrxjcPPk/7rz7HJ1MOugpoI1KMG8nANKIGtyA75ZM7qM16j16CT0VUtmZMo2nV2/3x/058hpAOORYwkl2g/tOck3MgVwTj9ZTvq6s7wrWomyi+SY04APUv4dfFrUvfbktxSi9JI37tSIP5rXD0Lq35KCZLR0aIyVlBs/MqmAhdQ1klK+kKY2VvC2/DmIY0BmpV/o745eOjWwtlS0PzG7BQ3JYUqhtmz2SawsVeHk9sm1wwPUXFM1ssRN/t2DrNLxVUb77DCnz421UAD7US5TWiL5sVnQSz/wvsvQ==",
"id_card_number": "OpldWegML3fJ3/U5L6av0bU6GcIOaOhXf2UDYKD8aZByMIav4gGrxjcPPk/7rz7HJ1MOugpoI1KMG8nANKIGtyA75ZM7qM16j16CT0VUtmZMo2nV2/3x/058hpAOORYwkl2g/tOck3MgVwTj9ZTvq6s7wrWomyi+SY04APUv4dfFrUvfbktxSi9JI37tSIP5rXD0Lq35KCZLR0aIyVlBs/MqmAhdQ1klK+kKY2VvC2/DmIY0BmpV/o745eOjWwtlS0PzG7BQ3JYUqhtmz2SawsVeHk9sm1wwPUXFM1ssRN/t2DrNLxVUb77DCnz421UAD7US5TWiL5sVnQSz/wvsvQ==",
"company_name": "深圳市未来有限公司",
"mchid": "1900000109",
"driver_license": "6298416",
"driver_category": "MAIN",
"driver_status": "ON_DUTY",
"driver_photo": {
"photo_type": "PHOTO_URL",
"photo_digest": {
"hash_type": "MD5",
"hash_value": "e10adc3949ba59abbe56e057f20f883e"
},
"photo_url": "http://www.abc.com/driver.icon",
"photo_icon": "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"
},
"region_id": 510100
}

View File

@ -0,0 +1,10 @@
{
"plate_number": "粤B12345",
"company_name": "深圳市未来有限公司",
"company_mchid": "1900000109",
"main_license": "6298416",
"deputy_license": "6298416",
"region_id": 510100,
"support_invoice": true,
"taxi_state": "IN_OPERATION"
}

View File

@ -0,0 +1,10 @@
{
"plate_number": "粤B12345",
"company_name": "深圳市未来有限公司",
"mchid": "1900000109",
"main_license": "6298416",
"deputy_license": "6298416",
"region_id": 510100,
"invoice_flag": "INVOICE",
"taxi_state": "IN_OPERATION"
}

View File

@ -0,0 +1,13 @@
{
"company_name": "深圳市未来有限公司",
"tax_id": "12345678901234567J",
"address": "广东省深圳市南山区高新科技园科技中一路腾讯大厦",
"phone": "0755-86013388",
"bank_name": "中国工商银行南山支行",
"bank_account": "12345678901234",
"invoice_mode": "JIAO_WEI",
"legal_person": "张三",
"short_name": "深圳未来",
"region_id": 510100,
"enterprise_type": "ENTERPRISE"
}

View File

@ -0,0 +1,4 @@
{
"mchid": "1900000109",
"company_name": "深圳市未来有限公司"
}

View File

@ -0,0 +1,14 @@
{
"company_mchid": "1900000109",
"enterprise_type": "CORPORATION",
"company_name": "深圳市未来有限公司",
"short_name": "深圳未来",
"tax_id": "12345678901234567J",
"address": "广东省深圳市南山区高新科技园科技中一路腾讯大厦",
"phone": "0755-86013388",
"bank_name": "中国工商银行南山支行",
"bank_account": "12345678901234",
"legal_person": "张三",
"invoice_mode": "JIAOWEI",
"region_id": 510100
}

View File

@ -0,0 +1,9 @@
{
"plate_number": "川ADT9716",
"driver_license": "08512-2",
"up_time": "2020-04-07T19:47:32+08:00",
"region_id": 310100,
"source": "SOURCE_PAY",
"pay_time": "2020-04-07T19:47:32+08:00",
"pay_amount": 5450
}

View File

@ -910,6 +910,44 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests
AssertMockRequestModel(reqB2, (cipher) => Utilities.SM2Utility.Decrypt(SM2_PEM_PRIVATE_KEY, cipher));
}
[Fact(DisplayName = "测试用例:加密请求中的敏感数据([POST] /taxi-invoice/driver/update-driver")]
public async Task TestEncryptRequestSensitiveProperty_UpdateTaxiInvoiceDriverRequest()
{
static Models.UpdateTaxiInvoiceDriverRequest GenerateMockRequestModel()
{
return new Models.UpdateTaxiInvoiceDriverRequest()
{
DriverName = MOCK_PLAIN_STR,
DriverIdCardNumber = MOCK_PLAIN_STR
};
}
static void AssertMockRequestModel(Models.UpdateTaxiInvoiceDriverRequest request, Func<string, string> decryptor)
{
Assert.NotEqual(MOCK_PLAIN_STR, request.DriverName!);
Assert.NotEqual(MOCK_PLAIN_STR, request.DriverIdCardNumber!);
Assert.Equal(MOCK_PLAIN_STR, decryptor.Invoke(request.DriverName!));
Assert.Equal(MOCK_PLAIN_STR, decryptor.Invoke(request.DriverIdCardNumber!));
Assert.Equal(MOCK_CERT_SN, request.WechatpayCertificateSerialNumber!, ignoreCase: true);
}
var reqA1 = GenerateMockRequestModel();
CreateMockClientUseRSA(autoEncrypt: false).EncryptRequestSensitiveProperty(reqA1);
AssertMockRequestModel(reqA1, (cipher) => Utilities.RSAUtility.DecryptWithECB(RSA_PEM_PRIVATE_KEY, cipher));
var reqA2 = GenerateMockRequestModel();
CreateMockClientUseSM2(autoEncrypt: false).EncryptRequestSensitiveProperty(reqA2);
AssertMockRequestModel(reqA2, (cipher) => Utilities.SM2Utility.Decrypt(SM2_PEM_PRIVATE_KEY, cipher));
var reqB1 = GenerateMockRequestModel();
await CreateMockClientUseRSA(autoEncrypt: true).ExecuteUpdateTaxiInvoiceDriverAsync(reqB1);
AssertMockRequestModel(reqB1, (cipher) => Utilities.RSAUtility.DecryptWithECB(RSA_PEM_PRIVATE_KEY, cipher));
var reqB2 = GenerateMockRequestModel();
await CreateMockClientUseSM2(autoEncrypt: true).ExecuteUpdateTaxiInvoiceDriverAsync(reqB2);
AssertMockRequestModel(reqB2, (cipher) => Utilities.SM2Utility.Decrypt(SM2_PEM_PRIVATE_KEY, cipher));
}
[Fact(DisplayName = "测试用例:加密请求中的敏感数据([POST] /transfer/batches")]
public async Task TestEncryptRequestSensitiveProperty_CreateTransferBatchRequest()
{