Skip to content

Commit 64619c2

Browse files
committed
更新注释,明确证书文件对象的含义
1 parent f7d0a5d commit 64619c2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpPayService.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public interface WxMpPayService {
8181
* </pre>
8282
*
8383
* @param request 请求对象
84-
* @param keyFile 证书文件对象
84+
* @param keyFile 证书文件对象(即apiclient_cert.p12 商户证书文件,详细参考https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3)
8585
* @return 退款操作结果
8686
*/
8787
WxPayRefundResult refund(WxPayRefundRequest request, File keyFile) throws WxErrorException;
@@ -128,7 +128,7 @@ public interface WxMpPayService {
128128
* </pre>
129129
*
130130
* @param request 请求对象
131-
* @param keyFile 证书文件对象
131+
* @param keyFile 证书文件对象(即apiclient_cert.p12 商户证书文件,详细参考https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3)
132132
*/
133133
WxPaySendRedpackResult sendRedpack(WxPaySendRedpackRequest request, File keyFile) throws WxErrorException;
134134

@@ -141,7 +141,7 @@ public interface WxMpPayService {
141141
* 请求方式 POST
142142
* </pre>
143143
* @param mchBillNo 商户发放红包的商户订单号,比如10000098201411111234567890
144-
* @param keyFile 证书文件对象
144+
* @param keyFile 证书文件对象(即apiclient_cert.p12 商户证书文件,详细参考https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3)
145145
*/
146146
WxPayRedpackQueryResult queryRedpack(String mchBillNo, File keyFile) throws WxErrorException;
147147

@@ -156,7 +156,7 @@ public interface WxMpPayService {
156156
* </pre>
157157
*
158158
* @param request 请求对象
159-
* @param keyFile 证书文件对象
159+
* @param keyFile 证书文件对象(即apiclient_cert.p12 商户证书文件,详细参考https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3)
160160
*/
161161
WxEntPayResult entPay(WxEntPayRequest request, File keyFile) throws WxErrorException;
162162

@@ -169,7 +169,7 @@ public interface WxMpPayService {
169169
* </pre>
170170
*
171171
* @param partnerTradeNo 商户订单号
172-
* @param keyFile 证书文件对象
172+
* @param keyFile 证书文件对象(即apiclient_cert.p12 商户证书文件,详细参考https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3)
173173
*/
174174
WxEntPayQueryResult queryEntPay(String partnerTradeNo, File keyFile) throws WxErrorException;
175175

0 commit comments

Comments
 (0)