#319 增加“退款结果通知“处理方法,并优化调整微信支付相关代码

This commit is contained in:
Binary Wang
2017-09-01 19:18:08 +08:00
parent c12c176715
commit 434703327b
16 changed files with 918 additions and 32 deletions

View File

@@ -71,6 +71,11 @@ public class WxPayConstants {
*/
public static final String JSAPI = "JSAPI";
/**
* H5支付
*/
public static final String MWEB = "MWEB";
/**
* 刷卡支付,刷卡支付有单独的支付接口,不调用统一下单接口
*/
@@ -84,4 +89,15 @@ public class WxPayConstants {
public static final String HMAC_SHA256 = "HMAC-SHA256";
public static final String MD5 = "MD5";
}
/**
* 限定支付方式
*/
public static class LimitPay {
/**
* no_credit--指定不能使用信用卡支付
*/
public static final String NO_CREDIT = "no_credit";
}
}