kongdeqiang
2025-02-21 15e5365f1a59fa0538fe4fcc71ef28a934f93f06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.boying.common;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName WeChatConfig.java
 * @Description TODO
 * @createTime 2023年09月11日 08:30:00
 */
public class WeChatConfig {
    /**
     * 微信服务号APPID
     */
    public static String APPID="wx46e756aed958f895";
    /**
     * appsecret
     */
    public static String  APPSECRECT="543d89dae2d5445298f4ef588f41538f";
    /**
     * grant_type
     */
    public static String  GRANTTYPE="authorization_code";
 
}