fix
Helius
2021-08-05 8bbb027dc36b3f3c7f2d505fc75180261fb4d640
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.xzx.gc.util;
 
public class WeChatConfig {
 
    /**
     * 微信服务号APPID
     */
    public static String APPID="wx6d7dfd9073dfa875";
    /**
     * 微信支付的商户号
     */
    public static String MCHID="1546567611";
    /**
     * 微信支付的API密钥
     */
    public static String APIKEY="QUJvGnZT17N4TAQHISnST6mqLJbaAM5F";
    /**
     * 微信支付成功之后的回调地址【注意:当前回调地址必须是公网能够访问的地址】
     */
    public static String WECHAT_NOTIFY_URL_PC="https://wxtest.cnxzx.com/wechat_notify_url_pc";
    /**
     * 微信统一下单API地址
     */
    public static String UFDODER_URL="https://api.mch.weixin.qq.com/pay/unifiedorder";
    /**
     * true为使用真实金额支付,false为使用测试金额支付(1分)
     */
    public static String WXPAY="";
}