mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 09:54: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>
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /billdownload/file 接口的请求。</para>
|
||||
/// <para>表示 [GET] /{download_url} 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class DownloadBillFileRequest : WechatTenpayRequest
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /billdownload/file 接口的响应。</para>
|
||||
/// <para>表示 [GET] /{download_url} 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class DownloadBillFileResponse : WechatTenpayResponse
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /brand/profitsharing/receivers/add 接口的请求。</para>
|
||||
/// <para>表示 [POST] /brand/profitsharing/receivers/add 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class AddBrandProfitSharingReceiverRequest : WechatTenpayRequest
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /brand/profitsharing/receivers/add 接口的响应。</para>
|
||||
/// <para>表示 [POST] /brand/profitsharing/receivers/add 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class AddBrandProfitSharingReceiverResponse : WechatTenpayResponse
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /brand/profitsharing/receivers/delete 接口的请求。</para>
|
||||
/// <para>表示 [POST] /brand/profitsharing/receivers/delete 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class DeleteBrandProfitSharingReceiverRequest : WechatTenpayRequest
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /brand/profitsharing/receivers/delete 接口的响应。</para>
|
||||
/// <para>表示 [POST] /brand/profitsharing/receivers/delete 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class DeleteBrandProfitSharingReceiverResponse : WechatTenpayResponse
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /ecommerce/profitsharing/receivers/add 接口的请求。</para>
|
||||
/// <para>表示 [POST] /ecommerce/profitsharing/receivers/add 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class AddEcommerceProfitSharingReceiverRequest : WechatTenpayRequest
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /ecommerce/profitsharing/receivers/add 接口的响应。</para>
|
||||
/// <para>表示 [POST] /ecommerce/profitsharing/receivers/add 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class AddEcommerceProfitSharingReceiverResponse : WechatTenpayResponse
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /ecommerce/profitsharing/receivers/delete 接口的请求。</para>
|
||||
/// <para>表示 [POST] /ecommerce/profitsharing/receivers/delete 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class DeleteEcommerceProfitSharingReceiverRequest : WechatTenpayRequest
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /ecommerce/profitsharing/receivers/delete 接口的响应。</para>
|
||||
/// <para>表示 [POST] /ecommerce/profitsharing/receivers/delete 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class DeleteEcommerceProfitSharingReceiverResponse : WechatTenpayResponse
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /marketing/paygiftactivity/activities/{activity_id} 接口的请求。</para>
|
||||
/// <para>表示 [GET] /marketing/paygiftactivity/activities/{activity_id} 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class GetMarketingPayGiftActivityByActivityIdRequest : WechatTenpayRequest
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /marketing/paygiftactivity/activities/{activity_id} 接口的响应。</para>
|
||||
/// <para>表示 [GET] /marketing/paygiftactivity/activities/{activity_id} 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class GetMarketingPayGiftActivityByActivityIdResponse : WechatTenpayResponse
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /payscore/permissions/terminate 接口的请求。</para>
|
||||
/// <para>表示 [POST] /payscore/partner/permissions/terminate 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class TerminatePayScorePartnerPermissionsByOpenIdRequest : TerminatePayScorePermissionsByOpenIdRequest
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /payscore/serviceorder 接口的响应。</para>
|
||||
/// <para>表示 [POST] /payscore/serviceorder/direct-complete 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CreatePayScoreServiceOrderDirectCompleteResponse : WechatTenpayResponse
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user