| 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="";  | 
| }  |