资讯管理 资讯信息和资讯分类实现 add by gqk 2024/04/16 15:29

This commit is contained in:
gognqingkai 2024-04-16 15:37:05 +08:00
parent 7cef1a057d
commit 9e73d21565

View File

@ -283,4 +283,34 @@ public class Constants {
* 成功
*/
public static final int SUCCESS_ERROR_CODE = 0;
/**
* 院后微信小程序登录接口地址
*/
public static final String APPLET_LOGIN_URL = "https://api.weixin.qq.com/sns/jscode2session";
/**
* 微信小程序ACCESS_TOKEN前缀
*/
public static final String POST_DISCHARGE_APPLET_ACCESS_TOKEN = "POST_Discharge_APPLET_ACCESS_TOKEN_";
/**
* 返回成功状态码
*/
public static final int SUCCESS_CODE = 0;
/**
* 院后微信小程序获取用户手机号接口地址
*/
public static final String PHONE_NUMBER_URL = "https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token=";
/**
* 获取微信小程序access_token错误码
*/
public static final int ERROR_ACCESS_CODE = 40001;
/**
* 返回成功状态码
*/
public static final String OK = "ok";
}