cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
30
31
32
33
34
35
36
37
38
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";
    
    
}