mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-30 02:14:44 +08:00
fix(tenpayv3): 修复代码分析工具检测出的 API 定义问题
This commit is contained in:
@@ -95,7 +95,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>异步调用 [POST] /goldplan/merchants/open-advertising-close 接口。</para>
|
||||
/// <para>异步调用 [POST] /goldplan/merchants/close-advertising-show 接口。</para>
|
||||
/// <para>REF: https://pay.weixin.qq.com/wiki/doc/apiv3_partner/apis/chapter8_5_5.shtml </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
@@ -108,7 +108,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
|
||||
if (request is null) throw new ArgumentNullException(nameof(request));
|
||||
|
||||
IFlurlRequest flurlReq = client
|
||||
.CreateRequest(HttpMethod.Post, "goldplan", "merchants", "open-advertising-close")
|
||||
.CreateRequest(HttpMethod.Post, "goldplan", "merchants", "close-advertising-show")
|
||||
.SetOptions(request);
|
||||
|
||||
return await client.SendRequestWithJsonAsync<Models.CloseGoldPlanAdvertisingShowResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
|
||||
public static class WechatTenpayClientExecuteMerchantFundBalanceExtensions
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>异步调用 [GET] /merchant/fund/balance/{sub_mchid} 接口。</para>
|
||||
/// <para>异步调用 [GET] /merchant/fund/balance/{account_type} 接口。</para>
|
||||
/// <para>REF: https://pay.weixin.qq.com/wiki/doc/apiv3_partner/apis/chapter7_7_3.shtml </para>
|
||||
/// </summary>
|
||||
/// <param name="client"></param>
|
||||
|
||||
Reference in New Issue
Block a user