办学质量监测教学评价系统
ageer
2024-01-16 1f7f97e86a79ee4f1515d753e84a1e20a3ec41fb
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
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.xmzs.common.config;
 
/**
 * 支付配置信息
 *
 * @author Admin
 */
public class PayConfig {
 
    /**
     * 商户ID
     */
    public static String pid = "xx";
 
    /**
     * 支付方式
     */
    public static String type = "wxpay";
 
    /**
     * 接口地址
     */
    public static String payUrl = "https://pay.bluetuo.com/mapi.php";
 
    /**
     * 服务器异步通知地址
     */
    public static String notify_url = "http://xx/pay/returnUrl";
 
    /**
     * 页面跳转通知地址
     */
    public static String return_url = "http://xx/pay/notifyUrl";
 
    /**
     * 设备类型
     */
    public static String device = "pc";
 
    /**
     * 加密方式默认MD5
     */
 
    public static String sign_type = "MD5";
 
    /**
     * 私钥
     */
    public static String key = "xx";
 
}