common中添加 静态常量

This commit is contained in:
32503
2025-06-11 09:31:42 +08:00
parent 791a667b15
commit 98b3b29c24

View File

@ -23,4 +23,13 @@ public interface Constants {
String ACTUATOR_PROMETHEUS = "actuator/prometheus"; String ACTUATOR_PROMETHEUS = "actuator/prometheus";
String GET_USERINFO_API = "/v1/userinfo/refresh"; String GET_USERINFO_API = "/v1/userinfo/refresh";
String CHECK_TOKEN_CONFIG = "/v1/checkToken/getCheckTokenVo"; String CHECK_TOKEN_CONFIG = "/v1/checkToken/getCheckTokenVo";
/**
* http请求
*/
public static final String HTTP = "http://";
/**
* https请求
*/
public static final String HTTPS = "https://";
} }