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 {
5959 * 在发起微信支付前,需要调用统一下单接口,获取"预支付交易会话标识"
6060 * 接口地址:https://api.mch.weixin.qq.com/pay/unifiedorder
6161 *
62- * @param request 请求对象
62+ * @param request 请求对象,注意一些参数如appid、mchid等不用设置,方法内会自动从配置对象中获取到(前提是对应配置中已经设置)
6363 * @throws WxErrorException
6464 */
6565 WxPayUnifiedOrderResult unifiedOrder (WxPayUnifiedOrderRequest request ) throws WxErrorException ;
@@ -68,7 +68,8 @@ public interface WxMpPayService {
6868 * 该接口调用“统一下单”接口,并拼装发起支付请求需要的参数
6969 * 详见http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115&token=&lang=zh_CN
7070 *
71- * @param request 请求对象
71+ * @param request 请求对象,注意一些参数如appid、mchid等不用设置,方法内会自动从配置对象中获取到(前提是对应配置中已经设置)
72+ * @throws WxErrorException
7273 */
7374 Map <String , String > getPayInfo (WxPayUnifiedOrderRequest request ) throws WxErrorException ;
7475
You can’t perform that action at this time.
0 commit comments