办学质量监测教学评价系统
ageer
2024-02-27 a079ef44e53acd9e8df51dbb31cf5aea4f9be5bd
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
package com.xmzs.common.config;
 
/**
 * 支付配置信息
 *
 * @author Admin
 */
public class PayConfig {
 
    /**
     * 商户ID
     */
    public static String pid = "xxx";
 
    /**
     * 接口地址
     */
    public static String payUrl = "https://pay-cloud.vip/mapi.php";
 
    /**
     * 私钥
     */
    public static String key = "xxx";
 
    /**
     * 服务器异步通知地址
     */
    public static String notify_url = "https://www.pandarobot.chat/pay/returnUrl";
 
    /**
     * 页面跳转通知地址
     */
    public static String return_url = "https://www.pandarobot.chat/pay/notifyUrl";
 
    /**
     * 支付方式
     */
    public static String type = "wxpay";
 
    /**
     * 设备类型
     */
    public static String device = "pc";
 
    /**
     * 加密方式默认MD5
     */
    public static String sign_type = "MD5";
 
}