File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public interface WxMpPayService {
59
59
* 在发起微信支付前,需要调用统一下单接口,获取"预支付交易会话标识"
60
60
* 接口地址:https://api.mch.weixin.qq.com/pay/unifiedorder
61
61
*
62
- * @param request 请求对象
62
+ * @param request 请求对象,注意一些参数如appid、mchid等不用设置,方法内会自动从配置对象中获取到(前提是对应配置中已经设置)
63
63
* @throws WxErrorException
64
64
*/
65
65
WxPayUnifiedOrderResult unifiedOrder (WxPayUnifiedOrderRequest request ) throws WxErrorException ;
@@ -68,7 +68,8 @@ public interface WxMpPayService {
68
68
* 该接口调用“统一下单”接口,并拼装发起支付请求需要的参数
69
69
* 详见http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115&token=&lang=zh_CN
70
70
*
71
- * @param request 请求对象
71
+ * @param request 请求对象,注意一些参数如appid、mchid等不用设置,方法内会自动从配置对象中获取到(前提是对应配置中已经设置)
72
+ * @throws WxErrorException
72
73
*/
73
74
Map <String , String > getPayInfo (WxPayUnifiedOrderRequest request ) throws WxErrorException ;
74
75
You can’t perform that action at this time.
0 commit comments