mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 08:37:22 +08:00
feat(tenpaybusiness): 新增智能分账相关接口
This commit is contained in:
parent
b6e5fc1dac
commit
646d86d61c
@ -104,6 +104,26 @@
|
||||
|
||||
- 支付关单:`ClosePayment`
|
||||
|
||||
- 智能分账:
|
||||
|
||||
- 分账接收方账户查询:`QueryProfitAllocationReceiverAccounts`
|
||||
|
||||
- 添加分账接收方账户申请:`CreateProfitAllocationReceiverAccountApplication`
|
||||
|
||||
- 查询添加分账接收方账户申请结果(内单号):`GetProfitAllocationReceiverAccountApplicationByApplicationId`
|
||||
|
||||
- 查询添加分账接收方账户申请结果(外单号):`GetProfitAllocationReceiverAccountApplicationByOutApplicationId`
|
||||
|
||||
- 分账申请:`CreateProfitAllocation`
|
||||
|
||||
- 解冻剩余资金:`SetProfitAllocationFinished`
|
||||
|
||||
- 分账查询(内单号):`GetProfitAllocationAmountByPaymentId`
|
||||
|
||||
- 分账查询(外单号):`GetProfitAllocationAmountByOutPaymentId`
|
||||
|
||||
- 查询订单剩余待分金额:`GetProfitAllocationByOutAllocationId`
|
||||
|
||||
- 账单下载:
|
||||
|
||||
- 获取资金账单下载链接:`GetBill`
|
||||
|
@ -0,0 +1,90 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Events
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 profit_allocation.finished 通知的数据。</para>
|
||||
/// </summary>
|
||||
public class ProfitAllocationEvent : WechatTenpayBusinessEvent<RefundEvent.Types.EventContent>
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class EventContent
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class AllocationDetail
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账明细单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_detail_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_detail_id")]
|
||||
public string OutAllocationDetailId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付分账明细单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocation_detail_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocation_detail_id")]
|
||||
public string AllocationDetailId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方账户 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_acct_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_acct_id")]
|
||||
public string ReceiverAccountId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账金额(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("amount")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("amount")]
|
||||
public int Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账结果。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("result")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("result")]
|
||||
public string Result { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付支付单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("payment_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("payment_id")]
|
||||
public string PaymentId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_id")]
|
||||
public string OutAllocationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocation_id")]
|
||||
public string AllocationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账状态。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("status")]
|
||||
public string Status { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账明细列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocations")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocations")]
|
||||
public Types.AllocationDetail[] AllocationDetailList { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,201 @@
|
||||
using System;
|
||||
using System.Net.Http;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Flurl.Http;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness
|
||||
{
|
||||
public static class WechatTenpayBusinessClientExecuteProfitAllocationsExtensions
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>异步调用 [POST] /mse-pay/profit-allocations 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E5%88%86%E8%B4%A6%E7%94%B3%E8%AF%B7 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.CreateProfitAllocationResponse> ExecuteCreateProfitAllocationAsync(this WechatTenpayBusinessClient client, Models.CreateProfitAllocationRequest request, CancellationToken cancellationToken = default)
|
||||
{
|
||||
if (client is null) throw new ArgumentNullException(nameof(client));
|
||||
if (request is null) throw new ArgumentNullException(nameof(request));
|
||||
|
||||
if (request.EnterpriseId == null)
|
||||
request.EnterpriseId = client.Credentials.EnterpriseId;
|
||||
|
||||
IFlurlRequest flurlReq = client
|
||||
.CreateRequest(request, HttpMethod.Post, "mse-pay", "profit-allocations");
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.CreateProfitAllocationResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [POST] /mse-pay/profit-allocations/finish 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E8%A7%A3%E5%86%BB%E5%89%A9%E4%BD%99%E8%B5%84%E9%87%91 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.SetProfitAllocationFinishedResponse> ExecuteSetProfitAllocationFinishedAsync(this WechatTenpayBusinessClient client, Models.SetProfitAllocationFinishedRequest request, CancellationToken cancellationToken = default)
|
||||
{
|
||||
if (client is null) throw new ArgumentNullException(nameof(client));
|
||||
if (request is null) throw new ArgumentNullException(nameof(request));
|
||||
|
||||
if (request.EnterpriseId == null)
|
||||
request.EnterpriseId = client.Credentials.EnterpriseId;
|
||||
|
||||
IFlurlRequest flurlReq = client
|
||||
.CreateRequest(request, HttpMethod.Post, "mse-pay", "profit-allocations", "finish");
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.SetProfitAllocationFinishedResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [GET] /mse-pay/profit-allocations/{allocation_id} 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E5%88%86%E8%B4%A6%E6%9F%A5%E8%AF%A2-%E5%86%85%E5%8D%95%E5%8F%B7 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.GetProfitAllocationByAllocationIdResponse> ExecuteGetProfitAllocationByAllocationIdAsync(this WechatTenpayBusinessClient client, Models.GetProfitAllocationByAllocationIdRequest 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, "mse-pay", "profit-allocations", request.AllocationId);
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.GetProfitAllocationByAllocationIdResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [GET] /mse-pay/profit-allocations/out-allocation-id/{out_allocation_id} 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E5%88%86%E8%B4%A6%E6%9F%A5%E8%AF%A2-%E5%A4%96%E5%8D%95%E5%8F%B7 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.GetProfitAllocationByOutAllocationIdResponse> ExecuteGetProfitAllocationByOutAllocationIdAsync(this WechatTenpayBusinessClient client, Models.GetProfitAllocationByOutAllocationIdRequest 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, "mse-pay", "profit-allocations", "out-allocation-id", request.OutAllocationId);
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.GetProfitAllocationByOutAllocationIdResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [GET] /mse-pay/profit-allocations/{payment_id}/amounts 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E6%9F%A5%E8%AF%A2%E8%AE%A2%E5%8D%95%E5%89%A9%E4%BD%99%E5%BE%85%E5%88%86%E9%87%91%E9%A2%9D </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.GetProfitAllocationAmountByPaymentIdResponse> ExecuteGetProfitAllocationAmountByPaymentIdAsync(this WechatTenpayBusinessClient client, Models.GetProfitAllocationAmountByPaymentIdRequest 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, "mse-pay", "profit-allocations", request.PaymentId, "amounts");
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.GetProfitAllocationAmountByPaymentIdResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
#region ReceiverAccount
|
||||
/// <summary>
|
||||
/// <para>异步调用 [GET] /mse-pay/profit-allocations/receiver-accounts 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E5%88%86%E8%B4%A6%E6%8E%A5%E6%94%B6%E6%96%B9%E8%B4%A6%E6%88%B7%E6%9F%A5%E8%AF%A2 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.QueryProfitAllocationReceiverAccountsResponse> ExecuteQueryProfitAllocationReceiverAccountsAsync(this WechatTenpayBusinessClient client, Models.QueryProfitAllocationReceiverAccountsRequest request, CancellationToken cancellationToken = default)
|
||||
{
|
||||
if (client is null) throw new ArgumentNullException(nameof(client));
|
||||
if (request is null) throw new ArgumentNullException(nameof(request));
|
||||
|
||||
if (request.EnterpriseId == null)
|
||||
request.EnterpriseId = client.Credentials.EnterpriseId;
|
||||
|
||||
IFlurlRequest flurlReq = client
|
||||
.CreateRequest(request, HttpMethod.Get, "mse-pay", "profit-allocations", "receiver-accounts")
|
||||
.SetQueryParam("ent_id", request.EnterpriseId);
|
||||
|
||||
if (request.UnifiedSocialCreditCode != null)
|
||||
flurlReq.SetQueryParam("unified_social_credit_code", request.UnifiedSocialCreditCode);
|
||||
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.QueryProfitAllocationReceiverAccountsResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [POST] /mse-pay/profit-allocations/receiver-accounts-applications 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E6%B7%BB%E5%8A%A0%E5%88%86%E8%B4%A6%E6%8E%A5%E6%94%B6%E6%96%B9%E8%B4%A6%E6%88%B7%E7%94%B3%E8%AF%B7 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.CreateProfitAllocationReceiverAccountApplicationResponse> ExecuteCreateProfitAllocationReceiverAccountApplicationAsync(this WechatTenpayBusinessClient client, Models.CreateProfitAllocationReceiverAccountApplicationRequest request, CancellationToken cancellationToken = default)
|
||||
{
|
||||
if (client is null) throw new ArgumentNullException(nameof(client));
|
||||
if (request is null) throw new ArgumentNullException(nameof(request));
|
||||
|
||||
if (request.EnterpriseId == null)
|
||||
request.EnterpriseId = client.Credentials.EnterpriseId;
|
||||
|
||||
IFlurlRequest flurlReq = client
|
||||
.CreateRequest(request, HttpMethod.Post, "mse-pay", "profit-allocations", "receiver-accounts-applications");
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.CreateProfitAllocationReceiverAccountApplicationResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [GET] /mse-pay/profit-allocations/receiver-accounts-applications/{application_id} 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E6%9F%A5%E8%AF%A2%E6%B7%BB%E5%8A%A0%E5%88%86%E8%B4%A6%E6%8E%A5%E6%94%B6%E6%96%B9%E8%B4%A6%E6%88%B7%E7%94%B3%E8%AF%B7%E7%BB%93%E6%9E%9C-%E5%86%85%E5%8D%95%E5%8F%B7 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.GetProfitAllocationReceiverAccountApplicationByApplicationIdResponse> ExecuteGetProfitAllocationReceiverAccountApplicationByApplicationIdAsync(this WechatTenpayBusinessClient client, Models.GetProfitAllocationReceiverAccountApplicationByApplicationIdRequest 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, "mse-pay", "profit-allocations", "receiver-accounts-applications", request.ApplicationId);
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.GetProfitAllocationReceiverAccountApplicationByApplicationIdResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [GET] /mse-pay/profit-allocations/receiver-accounts-applications/out_application_id/{out_application_id} 接口。</para>
|
||||
/// <para>REF: https://businesspay.qq.com/p/doc/mse/api/server.html#%E6%9F%A5%E8%AF%A2%E6%B7%BB%E5%8A%A0%E5%88%86%E8%B4%A6%E6%8E%A5%E6%94%B6%E6%96%B9%E8%B4%A6%E6%88%B7%E7%94%B3%E8%AF%B7%E7%BB%93%E6%9E%9C-%E5%A4%96%E5%8D%95%E5%8F%B7 </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public static async Task<Models.GetProfitAllocationReceiverAccountApplicationByOutApplicationIdResponse> ExecuteGetProfitAllocationReceiverAccountApplicationByOutApplicationIdAsync(this WechatTenpayBusinessClient client, Models.GetProfitAllocationReceiverAccountApplicationByOutApplicationIdRequest 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, "mse-pay", "profit-allocations", "receiver-accounts-applications", "out_application_id", request.OutApplicationId);
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.GetProfitAllocationReceiverAccountApplicationByOutApplicationIdResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /mse-pay/profit-allocations 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class CreateProfitAllocationRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class AllocationDetail
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账明细单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_detail_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_detail_id")]
|
||||
public string OutAllocationDetailId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方账户 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_acct_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_acct_id")]
|
||||
public string ReceiverAccountId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("merchant_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("merchant_name")]
|
||||
public string MerchantName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账金额(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("amount")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("amount")]
|
||||
public int Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账场景。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("scenario")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("scenario")]
|
||||
public string Scene { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账场景补充。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("detail")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("detail")]
|
||||
public string? Detail { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账原因描述。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("desc")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("desc")]
|
||||
public string? Description { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置企业商户 ID。如果不指定将使用构造 <see cref="WechatTenpayBusinessClient"/> 时的 <see cref="WechatTenpayBusinessClientOptions.EnterpriseId"/> 参数。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("ent_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("ent_id")]
|
||||
public string? EnterpriseId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付支付单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("payment_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("payment_id")]
|
||||
public string PaymentId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_id")]
|
||||
public string OutAllocationId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账结果通知 URL。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("server_notify_url")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("server_notify_url")]
|
||||
public string ServerNotifyUrl { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置是否解冻剩余未分资金。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("finish")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("finish")]
|
||||
public bool IsFinish { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账明细列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocations")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocations")]
|
||||
public IList<Types.AllocationDetail> AllocationDetailList { get; set; } = new List<Types.AllocationDetail>();
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /mse-pay/profit-allocations 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CreateProfitAllocationResponse : GetProfitAllocationByAllocationIdResponse
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/{payment_id}/amounts 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationAmountByPaymentIdRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置微企付支付单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public string PaymentId { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/{payment_id}/amounts 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationAmountByPaymentIdResponse : WechatTenpayBusinessResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置微企付支付单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("payment_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("payment_id")]
|
||||
public string PaymentId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订单剩余待分金额(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("unsplit_amount")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("unsplit_amount")]
|
||||
public int UnsplitAmount { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/{allocation_id} 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationByAllocationIdRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置微企付分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public string AllocationId { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
@ -0,0 +1,146 @@
|
||||
using System;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/{allocation_id} 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationByAllocationIdResponse : WechatTenpayBusinessResponse
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class AllocationDetail
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class Failure : GetProfitAllocationReceiverAccountApplicationByApplicationIdResponse.Types.Failure
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账明细单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_detail_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_detail_id")]
|
||||
public string OutAllocationDetailId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付分账明细单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocation_detail_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocation_detail_id")]
|
||||
public string AllocationDetailId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方账户 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_acct_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_acct_id")]
|
||||
public string ReceiverAccountId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("merchant_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("merchant_name")]
|
||||
public string MerchantName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账金额(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("amount")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("amount")]
|
||||
public int Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账结果。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("result")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("result")]
|
||||
public string Result { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账成功时间。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("succeeded_time")]
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.RFC3339NullableDateTimeOffsetConverter))]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("succeeded_time")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.RFC3339NullableDateTimeOffsetConverter))]
|
||||
public DateTimeOffset? SucceedTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账原因描述。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("desc")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("desc")]
|
||||
public string? Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置失败信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("failed_reason")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("failed_reason")]
|
||||
public Types.Failure? Failure { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付支付单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("payment_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("payment_id")]
|
||||
public string PaymentId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_id")]
|
||||
public string OutAllocationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocation_id")]
|
||||
public string AllocationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账状态。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("status")]
|
||||
public string Status { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账完成时间。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("finished_time")]
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.RFC3339NullableDateTimeOffsetConverter))]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("finished_time")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.RFC3339NullableDateTimeOffsetConverter))]
|
||||
public DateTimeOffset? FinishTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账完成金额(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("finish_amount")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("finish_amount")]
|
||||
public int? FinishAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账完成描述。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("finish_desc")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("finish_desc")]
|
||||
public string? FinishDescription { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账明细列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocations")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocations")]
|
||||
public Types.AllocationDetail[] AllocationDetailList { get; set; } = default!;
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/out-allocation-id/{out_allocation_id} 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationByOutAllocationIdRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public string OutAllocationId { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/out-allocation-id/{out_allocation_id} 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationByOutAllocationIdResponse : GetProfitAllocationByAllocationIdResponse
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,244 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /mse-pay/profit-allocations/receiver-accounts-applications 接口的请求。</para>
|
||||
/// </summary>
|
||||
[WechatTenpayBusinessSensitive]
|
||||
public class CreateProfitAllocationReceiverAccountApplicationRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class NaturalPerson
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class Address
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置详细地址。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("detail_address")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("detail_address")]
|
||||
public string DetailedAddress { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置省份代码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("province_code")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("province_code")]
|
||||
public string ProvinceCode { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置省份名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("province_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("province_name")]
|
||||
public string ProvinceName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置城市名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("city_code")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("city_code")]
|
||||
public string CityCode { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置城市名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("city_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("city_name")]
|
||||
public string CityName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置区县名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("area_code")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("area_code")]
|
||||
public string DistrictCode { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置区县名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("area_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("area_name")]
|
||||
public string DistrictName { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置姓名(需使用微企付公钥加密)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("name")]
|
||||
[WechatTenpayBusinessSensitiveProperty]
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置身份证号(需使用微企付公钥加密)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("number")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("number")]
|
||||
[WechatTenpayBusinessSensitiveProperty]
|
||||
public string IdCardNumber { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置身份证期限(格式:["yyyy-MM-dd", "yyyy-MM-dd"],长期用 "长期" 表示)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("validity_period")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("validity_period")]
|
||||
public IList<string> ValidityPeriodStrings { get; set; } = new List<string>();
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置身份证人像面照片 FileId。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("front_photocopy_file_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("front_photocopy_file_id")]
|
||||
public string FrontPhotoCopyFileId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置身份证国徽面照片 FileId。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("back_photocopy_file_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("back_photocopy_file_id")]
|
||||
public string BackPhotoCopyFileId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置身份证地址信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("id_card_address_info")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("id_card_address_info")]
|
||||
public Types.Address Address { get; set; } = new Types.Address();
|
||||
}
|
||||
|
||||
public class SettlementAccount
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置账户类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("account_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("account_type")]
|
||||
public string AccountType { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置开户银行。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_name")]
|
||||
public string BankName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置开户银行联行号。与字段 <see cref="BankBranchName"/> 二选一。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_branch_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_branch_id")]
|
||||
public string? BankBranchId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置开户银行全称(含支行)。与字段 <see cref="BankBranchId"/> 二选一。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_branch_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_branch_name")]
|
||||
public string? BankBranchName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置开户名称(需使用微企付公钥加密)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_account_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_account_name")]
|
||||
[WechatTenpayBusinessSensitiveProperty]
|
||||
public string BankAccountName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置银行卡号(需使用微企付公钥加密)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_account_number")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_account_number")]
|
||||
[WechatTenpayBusinessSensitiveProperty]
|
||||
public string BankAccountNumber { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置银行预留手机号(需使用微企付公钥加密)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_account_mobile")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_account_mobile")]
|
||||
[WechatTenpayBusinessSensitiveProperty]
|
||||
public string? BankAccountMobileNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置银行卡正面照片 FileId。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("front_photocopy_file_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("front_photocopy_file_id")]
|
||||
public string? FrontPhotoCopyFileId { get; set; }
|
||||
}
|
||||
|
||||
public class WithdrawCycle
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置周期类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cycle_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cycle_type")]
|
||||
public string CycleType { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置周期值。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cycle_value")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cycle_value")]
|
||||
public int CycleValue { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置企业商户 ID。如果不指定将使用构造 <see cref="WechatTenpayBusinessClient"/> 时的 <see cref="WechatTenpayBusinessClientOptions.EnterpriseId"/> 参数。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("ent_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("ent_id")]
|
||||
public string? EnterpriseId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台申请单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_application_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_application_id")]
|
||||
public string OutApplicationId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_type")]
|
||||
public string ReceiverType { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台接收方名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_receiver_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_receiver_name")]
|
||||
public string OutReceiverName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置个人经营者信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("natural_person_info")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("natural_person_info")]
|
||||
public Types.NaturalPerson? NaturalPerson { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置结算账户信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("settlement_account")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("settlement_account")]
|
||||
public Types.SettlementAccount SettlementAccount { get; set; } = new Types.SettlementAccount();
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置提现周期信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("withdraw_cycle")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("withdraw_cycle")]
|
||||
public Types.WithdrawCycle WithdrawCycle { get; set; } = new Types.WithdrawCycle();
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /mse-pay/profit-allocations/receiver-accounts-applications 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CreateProfitAllocationReceiverAccountApplicationResponse : WechatTenpayBusinessResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置平台申请单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_application_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_application_id")]
|
||||
public string OutApplicationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付申请单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("application_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("application_id")]
|
||||
public string ApplicationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置申请状态。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("status")]
|
||||
public string Status { get; set; } = default!;
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/receiver-accounts-applications/{application_id} 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationReceiverAccountApplicationByApplicationIdRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置微企付申请单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public string ApplicationId { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
@ -0,0 +1,115 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/receiver-accounts-applications/{application_id} 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationReceiverAccountApplicationByApplicationIdResponse : WechatTenpayBusinessResponse
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class Receiver
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置接收方账户 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_acct_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_acct_id")]
|
||||
public string? ReceiverAccountId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_type")]
|
||||
public string ReceiverType { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台接收方名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_receiver_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_receiver_name")]
|
||||
public string OutReceiverName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("merchant_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("merchant_name")]
|
||||
public string MerchantName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置个人身份证号掩码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("id_card_num_mask")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("id_card_num_mask")]
|
||||
public string? IdCardNumberMask { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置个人身份证号 MD5 值。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("id_card_num_md5")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("id_card_num_md5")]
|
||||
public string? IdCardNumberMd5 { get; set; }
|
||||
}
|
||||
|
||||
public class Failure
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置失败类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("failed_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("failed_type")]
|
||||
public string FailedType { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置失败原因详情。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("failed_detail")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("failed_detail")]
|
||||
public string? FailedDetail { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台申请单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_application_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_application_id")]
|
||||
public string OutApplicationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付申请单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("application_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("application_id")]
|
||||
public string ApplicationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置申请状态。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("status")]
|
||||
public string Status { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置企业商户 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("ent_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("ent_id")]
|
||||
public string EnterpriseId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_info")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_info")]
|
||||
public Types.Receiver Receiver { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置失败信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("failed_reason")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("failed_reason")]
|
||||
public Types.Failure? Failure { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/receiver-accounts-applications/out_application_id/{out_application_id} 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationReceiverAccountApplicationByOutApplicationIdRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置平台申请单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public string OutApplicationId { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/receiver-accounts-applications/out_application_id/{out_application_id} 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class GetProfitAllocationReceiverAccountApplicationByOutApplicationIdResponse : GetProfitAllocationReceiverAccountApplicationByApplicationIdResponse
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/receiver-accounts 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class QueryProfitAllocationReceiverAccountsRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置企业商户 ID。如果不指定将使用构造 <see cref="WechatTenpayBusinessClient"/> 时的 <see cref="WechatTenpayBusinessClientOptions.EnterpriseId"/> 参数。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public string? EnterpriseId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置统一社会信用代码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public string? UnifiedSocialCreditCode { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,125 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /mse-pay/profit-allocations/receiver-accounts 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class QueryProfitAllocationReceiverAccountsResponse : WechatTenpayBusinessResponse
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class ReceiverAccount
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class WithdrawCycle
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置周期类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cycle_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cycle_type")]
|
||||
public string CycleType { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置周期值。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cycle_value")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cycle_value")]
|
||||
public int CycleValue { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方账户 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_acct_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_acct_id")]
|
||||
public string ReceiverAccountId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_type")]
|
||||
public string ReceiverType { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("merchant_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("merchant_name")]
|
||||
public string MerchantName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置统一社会信用代码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("unified_social_credit_code")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("unified_social_credit_code")]
|
||||
public string? UnifiedSocialCreditCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置个人身份证号掩码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("id_card_num_mask")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("id_card_num_mask")]
|
||||
public string? IdCardNumberMask { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置个人身份证号 MD5 值。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("id_card_num_md5")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("id_card_num_md5")]
|
||||
public string? IdCardNumberMd5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置开户银行。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_name")]
|
||||
public string BankName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置账户类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("account_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("account_type")]
|
||||
public string AccountType { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置开户名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_account_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_account_name")]
|
||||
public string BankAccountName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置银行卡号后 4 位。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("bank_account_number_last4")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("bank_account_number_last4")]
|
||||
public string BankAccountNumberLast4String { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账方提现周期信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("withdraw_cycle")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("withdraw_cycle")]
|
||||
public Types.WithdrawCycle WithdrawCycle { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置接收方提现周期信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_withdraw_cycle")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_withdraw_cycle")]
|
||||
public Types.WithdrawCycle ReceiverWithdrawCycle { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账接收方账户列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("receiver_accts")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("receiver_accts")]
|
||||
public Types.ReceiverAccount[] ReceiverAccountList { get; set; } = default!;
|
||||
}
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /mse-pay/profit-allocations/finish 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class SetProfitAllocationFinishedRequest : WechatTenpayBusinessRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置企业商户 ID。如果不指定将使用构造 <see cref="WechatTenpayBusinessClient"/> 时的 <see cref="WechatTenpayBusinessClientOptions.EnterpriseId"/> 参数。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("ent_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("ent_id")]
|
||||
public string? EnterpriseId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付支付单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("payment_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("payment_id")]
|
||||
public string PaymentId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_id")]
|
||||
public string OutAllocationId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账原因描述。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("desc")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("desc")]
|
||||
public string? Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置分账状态通知 URL。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("server_notify_url")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("server_notify_url")]
|
||||
public string ServerNotifyUrl { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /mse-pay/profit-allocations/finish 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class SetProfitAllocationFinishedResponse : WechatTenpayBusinessResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置微企付支付单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("payment_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("payment_id")]
|
||||
public string PaymentId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置平台分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_allocation_id")]
|
||||
public string OutAllocationId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付分账单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("allocation_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("allocation_id")]
|
||||
public string AllocationId { get; set; } = default!;
|
||||
}
|
||||
}
|
@ -13,7 +13,7 @@
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<PackageProjectUrl>https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat</PackageProjectUrl>
|
||||
<PackageTags>Flurl.Http Tencent Tenpay 腾讯商企付 腾讯微企付 商企付 微企付</PackageTags>
|
||||
<PackageTags>Flurl.Http Tencent Tenpay FiT 腾讯金融科技服务平台 腾讯金融科技 腾讯金融 腾讯商企付 腾讯微企付 商企付 微企付</PackageTags>
|
||||
<Version>2.1.0</Version>
|
||||
<Description>基于 Flurl.Http 的微企付 API 客户端。</Description>
|
||||
<Authors>Fu Diwei</Authors>
|
||||
|
@ -22,7 +22,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Settings
|
||||
/// <summary>
|
||||
/// 初始化客户端时 <see cref="WechatTenpayBusinessClientOptions.EnterpriseId"/> 的副本。
|
||||
/// </summary>
|
||||
public string EnterpriseId { get; }
|
||||
public string? EnterpriseId { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 初始化客户端时 <see cref="WechatTenpayBusinessClientOptions.EnterpriseCertificateSerialNumber"/> 的副本。
|
||||
@ -37,7 +37,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Settings
|
||||
/// <summary>
|
||||
/// 初始化客户端时 <see cref="WechatTenpayBusinessClientOptions.TBEPCertificateSerialNumber"/> 的副本。
|
||||
/// </summary>
|
||||
public string? TBEPCertificateSerialNumber { get; }
|
||||
public string TBEPCertificateSerialNumber { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 初始化客户端时 <see cref="WechatTenpayBusinessClientOptions.TBEPCertificatePublicKey"/> 的副本。
|
||||
|
@ -41,7 +41,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness
|
||||
/// <summary>
|
||||
/// 获取或设置微企付企业商户 ID。
|
||||
/// </summary>
|
||||
public string EnterpriseId { get; set; } = default!;
|
||||
public string? EnterpriseId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付企业商户 API 证书序列号。
|
||||
@ -56,7 +56,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness
|
||||
/// <summary>
|
||||
/// 获取或设置微企付 TBEP 证书序列号。
|
||||
/// </summary>
|
||||
public string? TBEPCertificateSerialNumber { get; set; }
|
||||
public string TBEPCertificateSerialNumber { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微企付 TBEP 证书公钥。
|
||||
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
"ent_id": "stringstri",
|
||||
"payment_id": "string",
|
||||
"out_allocation_id": "string",
|
||||
"server_notify_url": "string",
|
||||
"finish": true,
|
||||
"allocations": [
|
||||
{
|
||||
"out_allocation_detail_id": "string",
|
||||
"receiver_acct_id": "string",
|
||||
"merchant_name": "string",
|
||||
"amount": 0,
|
||||
"scenario": "PLATFORM_ALLOCATION",
|
||||
"detail": "string",
|
||||
"desc": "string"
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
{
|
||||
"payment_id": "string",
|
||||
"out_allocation_id": "string",
|
||||
"allocation_id": "string",
|
||||
"status": "INIT",
|
||||
"finished_time": "2019-08-24T14:15:22Z",
|
||||
"allocations": [
|
||||
{
|
||||
"allocation_detail_id": "string",
|
||||
"out_allocation_detail_id": "string",
|
||||
"receiver_acct_id": "string",
|
||||
"merchant_name": "string",
|
||||
"amount": 0,
|
||||
"result": "PENDING",
|
||||
"succeeded_time": "2019-08-24T14:15:22Z",
|
||||
"failed_reason": {
|
||||
"failed_type": "NO_RELATION",
|
||||
"failed_detail": "string"
|
||||
},
|
||||
"desc": "string"
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
"payment_id": "string",
|
||||
"unsplit_amount": 0
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
{
|
||||
"payment_id": "string",
|
||||
"out_allocation_id": "string",
|
||||
"allocation_id": "string",
|
||||
"status": "INIT",
|
||||
"finished_time": "2019-08-24T14:15:22Z",
|
||||
"finish_amount": 0,
|
||||
"finish_desc": "string",
|
||||
"allocations": [
|
||||
{
|
||||
"allocation_detail_id": "string",
|
||||
"out_allocation_detail_id": "string",
|
||||
"receiver_acct_id": "string",
|
||||
"merchant_name": "string",
|
||||
"amount": 0,
|
||||
"result": "PENDING",
|
||||
"succeeded_time": "2019-08-24T14:15:22Z",
|
||||
"failed_reason": {
|
||||
"failed_type": "NO_RELATION",
|
||||
"failed_detail": "string"
|
||||
},
|
||||
"desc": "string"
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
{
|
||||
"payment_id": "string",
|
||||
"out_allocation_id": "string",
|
||||
"allocation_id": "string",
|
||||
"status": "INIT",
|
||||
"finish_amount": 0,
|
||||
"finish_desc": "string",
|
||||
"allocations": [
|
||||
{
|
||||
"allocation_detail_id": "string",
|
||||
"out_allocation_detail_id": "string",
|
||||
"receiver_acct_id": "string",
|
||||
"merchant_name": "string",
|
||||
"amount": 0,
|
||||
"result": "PENDING",
|
||||
"succeeded_time": "2019-08-24T14:15:22Z",
|
||||
"failed_reason": {
|
||||
"failed_type": "NO_RELATION",
|
||||
"failed_detail": "string"
|
||||
},
|
||||
"desc": "string"
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
{
|
||||
"out_application_id": "string",
|
||||
"ent_id": "stringstri",
|
||||
"receiver_type": "ENTERPRISE",
|
||||
"out_receiver_name": "string",
|
||||
"natural_person_info": {
|
||||
"name": "string",
|
||||
"number": "string",
|
||||
"validity_period": [ "string" ],
|
||||
"front_photocopy_file_id": "string",
|
||||
"back_photocopy_file_id": "string",
|
||||
"id_card_address_info": {
|
||||
"detail_address": "string",
|
||||
"province_name": "string",
|
||||
"province_code": "string",
|
||||
"city_name": "string",
|
||||
"city_code": "string",
|
||||
"area_name": "string",
|
||||
"area_code": "string"
|
||||
}
|
||||
},
|
||||
"settlement_account": {
|
||||
"account_type": "ENTERPRISE_ACCOUNT",
|
||||
"bank_account_name": "string",
|
||||
"bank_account_number": "string",
|
||||
"bank_account_mobile": "string",
|
||||
"bank_branch_id": "string",
|
||||
"bank_branch_name": "string",
|
||||
"bank_name": "string"
|
||||
},
|
||||
"withdraw_cycle": {
|
||||
"cycle_type": "T_N",
|
||||
"cycle_value": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"out_application_id": "string",
|
||||
"application_id": "string",
|
||||
"status": "PROCESSING"
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
"out_application_id": "string",
|
||||
"application_id": "string",
|
||||
"status": "PROCESSING",
|
||||
"ent_id": "stringstri",
|
||||
"receiver_info": {
|
||||
"receiver_acct_id": "string",
|
||||
"receiver_type": "ENTERPRISE",
|
||||
"merchant_name": "string",
|
||||
"out_receiver_name": "string",
|
||||
"id_card_num_mask": "152***********123*",
|
||||
"id_card_num_md5": "d41d8cd98f00b204e9800998ecf8427e"
|
||||
},
|
||||
"failed_reason": {
|
||||
"failed_type": "BANK_REJECTED",
|
||||
"failed_detail": "string"
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
{
|
||||
"out_application_id": "string",
|
||||
"application_id": "string",
|
||||
"status": "PROCESSING",
|
||||
"ent_id": "stringstri",
|
||||
"receiver_info": {
|
||||
"receiver_acct_id": "string",
|
||||
"receiver_type": "ENTERPRISE",
|
||||
"merchant_name": "string",
|
||||
"out_receiver_name": "string",
|
||||
"id_card_num_mask": "152***********123*",
|
||||
"id_card_num_md5": "d41d8cd98f00b204e9800998ecf8427e"
|
||||
},
|
||||
"failed_reason": {
|
||||
"failed_type": "BANK_REJECTED",
|
||||
"failed_detail": "string"
|
||||
}
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
{
|
||||
"receiver_accts": [
|
||||
{
|
||||
"receiver_acct_id": "6114100203045745560000001234567",
|
||||
"receiver_type": "NATURAL_PERSON",
|
||||
"merchant_name": "个人经营者-张三",
|
||||
"unified_social_credit_code": "9144030071526726XG",
|
||||
"id_card_num_mask": "152***********123*",
|
||||
"id_card_num_md5": "d41d8cd98f00b204e9800998ecf8427e",
|
||||
"bank_name": "平安银行",
|
||||
"account_type": "PERSON_ACCOUNT",
|
||||
"bank_account_name": "张*",
|
||||
"bank_account_number_last4": "1234",
|
||||
"withdraw_cycle": {
|
||||
"cycle_type": "T_N",
|
||||
"cycle_value": 1
|
||||
},
|
||||
"receiver_withdraw_cycle": {
|
||||
"cycle_type": "T_N",
|
||||
"cycle_value": 2
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
"ent_id": "stringstri",
|
||||
"payment_id": "string",
|
||||
"out_allocation_id": "string",
|
||||
"desc": "string",
|
||||
"server_notify_url": "string"
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"payment_id": "string",
|
||||
"out_allocation_id": "string",
|
||||
"allocation_id": "string"
|
||||
}
|
Loading…
Reference in New Issue
Block a user