minor updates

This commit is contained in:
Binary Wang
2017-02-13 17:51:11 +08:00
parent 111e5fbb03
commit e296d237eb
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,7 @@ public interface WxMpPayService {
* </pre> * </pre>
* *
* @param transactionId 微信订单号 * @param transactionId 微信订单号
* @param outTradeNo 商户系统内部的订单号当没提供transaction_id时需要传这个。 * @param outTradeNo 商户系统内部的订单号当没提供transactionId时需要传这个。
*/ */
WxPayOrderQueryResult queryOrder(String transactionId, String outTradeNo) throws WxErrorException; WxPayOrderQueryResult queryOrder(String transactionId, String outTradeNo) throws WxErrorException;
@ -44,7 +44,7 @@ public interface WxMpPayService {
* 是否需要证书: 不需要。 * 是否需要证书: 不需要。
* </pre> * </pre>
* *
* @param outTradeNo 商户系统内部的订单号当没提供transaction_id时需要传这个。 * @param outTradeNo 商户系统内部的订单号
*/ */
WxPayOrderCloseResult closeOrder(String outTradeNo) throws WxErrorException; WxPayOrderCloseResult closeOrder(String outTradeNo) throws WxErrorException;

View File

@ -404,6 +404,7 @@ public class WxMpPayServiceImpl implements WxMpPayService {
WxPayCommonResult result = WxPayBaseResult.fromXML(responseContent, WxPayCommonResult.class); WxPayCommonResult result = WxPayBaseResult.fromXML(responseContent, WxPayCommonResult.class);
this.checkResult(result); this.checkResult(result);
//TODO 待实现,暂时无测试帐号,无法调试
return null; return null;
} }