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";
|
|
}
|