docs: 完善文档

This commit is contained in:
Fu Diwei 2022-01-25 14:42:58 +08:00
parent ba9665f62e
commit 3b4778d786
4 changed files with 93 additions and 6 deletions

View File

@ -243,6 +243,10 @@
- 服务人员信息更新:`UpdateSmartGuide`
- 扣款服务
- 预扣费通知:`NotifyPAPPayContracts`
- 行业方案
- 智慧商圈
@ -389,6 +393,36 @@
- 下载账单:`DownloadBillFile`
- 批量转账到零钱
- 发起批量转账:`CreateTransferBatch`
- 微信批次单号查询批次单:`GetTransferBatchByBatchId`
- 微信明细单号查询明细单:`GetTransferBatchDetailByDetailId`
- 商家批次单号查询批次单:`GetTransferBatchByOutBatchNumber`
- 商家明细单号查询明细单:`GetTransferBatchDetailByOutDetailNumber`
- 转账电子回单申请受理:`CreateTransferBillReceipt`
- 查询转账电子回单:`GetTransferBillReceiptByOutBatchNumber`
- 转账明细电子回单受理:`CreateTransferDetailElectronicReceipt`
- 查询转账明细电子回单受理结果:`GetTransferDetailElectronicReceiptByOutDetailNumber`
- 下载电子回单:`DownloadBillFile`
- 查询账户实时余额:`GetMerchantFundBalance`
- 查询账户日终余额:`GetMerchantFundDayendBalance`
- 来账识别
- 商户银行来账查询:`QueryMerchantFundMerchantIncomeRecords`
- 风险合规
- 消费者投诉 2.0
@ -421,6 +455,20 @@
- 视频上传:`UploadMerchantMediaVideo`
- 银行组件:
- 获取对私银行卡号开户银行:`QueryCapitalBanksByBankAccount`
- 查询支持个人业务的银行列表:`QueryCapitalBanksPersonalBanking`
- 查询支持对公业务的银行列表:`QueryCapitalBanksCorporateBanking`
- 查询省份列表:`QueryCapitalAreasProvinces`
- 查询城市列表:`QueryCapitalAreasCities`
- 查询支行列表:`QueryCapitalBanksBranches`
</details>
---
@ -633,6 +681,10 @@
- 关闭广告展示:`CloseGoldPlanAdvertisingShow`
- 扣款服务
- 预扣费通知:`NotifyPartnerPAPPayContracts`
- 行业方案
- 电商收付通(商户进件)
@ -905,6 +957,40 @@
- 删除分账接收方:`DeleteBrandProfitSharingReceiver`
- 批量转账到零钱
- 发起批量转账:`CreatePartnerTransferBatch`
- 微信批次单号查询批次单:`GetPartnerTransferBatchByBatchId`
- 微信明细单号查询明细单:`GetPartnerTransferBatchDetailByDetailId`
- 商家批次单号查询批次单:`GetPartnerTransferBatchByOutBatchNumber`
- 商家明细单号查询明细单:`GetPartnerTransferBatchDetailByOutDetailNumber`
- 转账电子回单申请受理:`CreateTransferBillReceipt`
- 查询转账电子回单:`GetTransferBillReceiptByOutBatchNumber`
- 转账明细电子回单受理:`CreateTransferDetailElectronicReceipt`
- 查询转账明细电子回单受理结果:`GetTransferDetailElectronicReceiptByOutDetailNumber`
- 下载电子回单:`DownloadBillFile`
- 查询特约商户账户实时余额:`GetEcommerceFundBalance`
- 查询账户实时余额:`GetMerchantFundBalance`
- 查询账户日终余额:`GetMerchantFundDayendBalance`
- 来账识别
- 特约商户银行来账查询:`QueryMerchantFundPartnerIncomeRecords`
- 服务商银行来账查询:`QueryMerchantFundMerchantIncomeRecords`
- 风险合规
- 消费者开户意愿确认

View File

@ -2,6 +2,8 @@
基于 `Flurl.Http` 的[微信商户平台](https://pay.weixin.qq.com/) API v3 版客户端。
如需微信支付 v2 版 API 客户端,请移步 [`SKIT.FlurlHttpClient.WechantTenpayV2`](../WechatTenpayV2/README.md) 模块。
---
## 功能

View File

@ -1,9 +1,6 @@
## SKIT.FlurlHttpClient.Wechat.TenpayV2
[![GitHub Stars](https://img.shields.io/github/stars/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat?logo=github&label=Stars)](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat)
[![GitHub Forks](https://img.shields.io/github/forks/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat?logo=github&label=Forks)](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat)
[![NuGet Download](https://img.shields.io/nuget/dt/SKIT.FlurlHttpClient.Wechat.TenpayV2.svg?sanitize=true&label=Downloads)](https://www.nuget.org/packages/SKIT.FlurlHttpClient.Wechat.TenpayV2)
[![License](https://img.shields.io/github/license/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat?label=License)](https://mit-license.org/)
[![GitHub Stars](https://img.shields.io/github/stars/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat?logo=github&label=Stars)](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat) [![GitHub Forks](https://img.shields.io/github/forks/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat?logo=github&label=Forks)](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat) [![NuGet Download](https://img.shields.io/nuget/dt/SKIT.FlurlHttpClient.Wechat.TenpayV2.svg?sanitize=true&label=Downloads)](https://www.nuget.org/packages/SKIT.FlurlHttpClient.Wechat.TenpayV2) [![License](https://img.shields.io/github/license/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat?label=License)](https://mit-license.org/)
基于 `Flurl.Http` 的微信商户平台 API v2 版客户端。
@ -14,9 +11,10 @@
### 【功能特性】
- 基于微信支付 v2 版 API 封装。
- 支持直连商户、服务商两种模式。
- 支持普通商户、境内服务商、银行服务商三种模式。
- 请求时自动生成签名,无需开发者手动干预。
- 提供了微信支付所需的 MD5、HMAC-SHA-256 等算法工具类。
- 提供了微信支付所需的 AES、MD5、HMAC-SHA-256 等算法工具类。
- 提供了调起支付签名、解析回调通知事件敏感数据等扩展方法。
---

View File

@ -31,6 +31,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
return await client.SendRequestWithJsonAsync<Models.CreatePartnerTransferBatchResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
/// <summary>
/// <para>异步调用 [GET] /partner-transfer/batches/batch-id/{batch_id} 接口。</para>
/// <para>REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer_partner/chapter3_2.shtml </para>