Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API_BASE重用 #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ public interface ApiConstant {
/**
* 自定义OAuth Token端点地址
*/
String API_OAUTH_TOKEN = "/tumo-boot/auth/oauth/token";
String API_OAUTH_TOKEN = API_BASE+"/auth/oauth/token";

/**
* API接口前缀 - Auth模块
*/
String API_AUTH_PREFIX = "/tumo-boot/auth";
String API_AUTH_PREFIX = API_BASE+"/auth";

/**
* API接口前缀 - Upms模块
*/
String API_UPMS_PREFIX = "/tumo-boot/upms";
String API_UPMS_PREFIX = API_BASE+"/upms";

/**
* API接口前缀 - System模块
*/
String API_SYSTEM_PREFIX = "/tumo-boot/system";
String API_SYSTEM_PREFIX = API_BASE+"/system";
}