Browse Source

更新注释,明确证书文件对象的含义

master
Binary Wang 8 years ago
parent
commit
64619c2192
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpPayService.java

+ 5
- 5
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpPayService.java View File

@@ -81,7 +81,7 @@ public interface WxMpPayService {
* </pre> * </pre>
* *
* @param request 请求对象 * @param request 请求对象
* @param keyFile 证书文件对象
* @param keyFile 证书文件对象(即apiclient_cert.p12 商户证书文件,详细参考https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3)
* @return 退款操作结果 * @return 退款操作结果
*/ */
WxPayRefundResult refund(WxPayRefundRequest request, File keyFile) throws WxErrorException; WxPayRefundResult refund(WxPayRefundRequest request, File keyFile) throws WxErrorException;
@@ -128,7 +128,7 @@ public interface WxMpPayService {
* </pre> * </pre>
* *
* @param request 请求对象 * @param request 请求对象
* @param keyFile 证书文件对象
* @param keyFile 证书文件对象(即apiclient_cert.p12 商户证书文件,详细参考https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3)
*/ */
WxPaySendRedpackResult sendRedpack(WxPaySendRedpackRequest request, File keyFile) throws WxErrorException; WxPaySendRedpackResult sendRedpack(WxPaySendRedpackRequest request, File keyFile) throws WxErrorException;


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


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


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




Loading…
Cancel
Save