mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-02-14 03:56:25 +08:00
#319 增加“退款结果通知“处理方法,并优化调整微信支付相关代码
This commit is contained in:
@@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user