diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ea014e2..57723262 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -328,6 +328,12 @@
[展开查看]
+- Release 2.8.0
+
+ - **新增**:随官方更新合单支付相关接口模型。
+
+ - **新增**:随官方更新消费者投诉相关接口模型。
+
- Release 2.7.0
- **新增**:新增小微商户进件相关接口。
diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteTransferExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteTransferExtensions.cs
index 99631892..cab2c92b 100644
--- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteTransferExtensions.cs
+++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteTransferExtensions.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
@@ -15,7 +15,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
#region Batches
///
/// 异步调用 [POST] /transfer/batches 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter3_1.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_1.shtml
///
///
///
@@ -34,7 +34,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
///
/// 异步调用 [GET] /transfer/batches/batch-id/{batch_id} 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter3_2.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_2.shtml
///
///
///
@@ -63,7 +63,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
///
/// 异步调用 [GET] /transfer/batches/batch-id/{batch_id}/details/detail-id/{detail_id} 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter3_3.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_2.shtml
///
///
///
@@ -82,7 +82,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
///
/// 异步调用 [GET] /transfer/batches/out-batch-no/{out_batch_no} 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter3_4.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_5.shtml
///
///
///
@@ -111,7 +111,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
///
/// 异步调用 [GET] /transfer/batches/out-batch-no/{out_batch_no}/details/out-detail-no/{out_detail_no} 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter3_5.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_6.shtml
///
///
///
@@ -132,7 +132,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
#region BillReceipt
///
/// 异步调用 [POST] /transfer/bill-receipt 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter4_1.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_7.shtml
/// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer_partner/chapter4_1.shtml
///
///
@@ -152,7 +152,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
///
/// 异步调用 [GET] /transfer/bill-receipt/{out_batch_no} 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter4_2.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_8.shtml
/// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer_partner/chapter4_2.shtml
///
///
@@ -174,7 +174,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
#region Detail
///
/// 异步调用 [POST] /transfer-detail/electronic-receipts 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter4_4.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_9.shtml
/// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer_partner/chapter4_4.shtml
///
///
@@ -194,7 +194,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
///
/// 异步调用 [GET] /transfer-detail/electronic-receipts 接口。
- /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer/chapter4_5.shtml
+ /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter4_3_10.shtml
/// REF: https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transfer_partner/chapter4_5.shtml
///
///
diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj
index a81e1057..1dbc99c5 100644
--- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj
+++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj
@@ -14,7 +14,7 @@
MIT
https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat
Flurl.Http Wechat Weixin MicroMessage Tenpay WechatPay WeixinPay Wxpay 微信 微信支付 微信商户
- 2.7.0
+ 2.8.0
基于 Flurl.Http 的微信支付 API v3 版客户端,支持直连商户、服务商模式,支持基础支付、代金券、商家券、委托营销、消费卡、支付有礼、银行定向促活、微信支付分、微信先享卡、支付即服务、点金计划、智慧商圈、电商收付通、二级商户进件、小微商户进件、消费者投诉、商户违规通知、批量转账到零钱、银行组件、海关报关、融合钱包等功能。
Fu Diwei
git