kongdeqiang
2023-09-22 4dfd3b17483445db01c894c253a1b692f01c0067
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";
 
}