package cn.ksource.web.controller.wxpay;
|
|
import cn.ksource.config.SysConfigConstants;
|
|
/**
|
* 微信扫码支付配置项
|
* @author jxl
|
* @date 2016-01-29
|
*/
|
public class WxNativeConfig {
|
|
//这个就是自己要保管好的私有Key了(切记只能放在自己的后台代码里,不能放在任何可能被看到源代码的客户端程序中)
|
public static String key = "abcdefghijklmnopqrstuvwxyz198406";
|
|
//公众账号ID
|
public static String appid = "wxa4cf6de7f3f4d669";
|
|
//商户号
|
public static String mch_id = "1236397202";
|
|
//设备号
|
public static String device_info = "WEB";
|
|
//终端IP
|
public static String spbill_create_ip = "114.215.118.46";
|
|
//通知地址
|
public static String notify_url = SysConfigConstants.SERVER_IP+"/website/wxresult.html";
|
|
//交易类型
|
public static String trade_type = "NATIVE";
|
|
|
//获取二维码接口地址
|
public static String ewmInterfaceUrl = "https://api.mch.weixin.qq.com/pay/unifiedorder";
|
|
|
}
|