createJsPayRequest rename to createJSPayRequest

This commit is contained in:
jinyu 2016-01-18 11:06:09 +08:00
parent 3bfe840ae9
commit 54004ce4d0
2 changed files with 3 additions and 3 deletions

View File

@ -218,7 +218,7 @@ public class Pay3Api {
* @return JSAPI支付对象
* @throws WeixinPayException
*/
public MchPayRequest createJsPayRequest(String openId, String body,
public MchPayRequest createJSPayRequest(String openId, String body,
String outTradeNo, double totalFee, String notifyUrl,
String createIp) throws WeixinPayException {
MchPayPackage payPackage = new MchPayPackage(weixinAccount, openId,

View File

@ -191,10 +191,10 @@ public class WeixinPayProxy {
* @return JSAPI支付对象
* @throws WeixinPayException
*/
public MchPayRequest createJsPayRequest(String openId, String body,
public MchPayRequest createJSPayRequest(String openId, String body,
String outTradeNo, double totalFee, String notifyUrl,
String createIp) throws WeixinPayException {
return pay3Api.createJsPayRequest(openId, body, outTradeNo, totalFee,
return pay3Api.createJSPayRequest(openId, body, outTradeNo, totalFee,
notifyUrl, createIp);
}