fix(tenpayv3): 修复代码分析工具检测出的 API 定义问题

This commit is contained in:
Fu Diwei
2021-06-09 17:11:55 +08:00
parent b61890ccf4
commit 017acf36e9
16 changed files with 17 additions and 17 deletions

View File

@@ -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);

View File

@@ -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>