|
@ -14,10 +14,10 @@ public enum EnvEnum { |
|
|
/** |
|
|
/** |
|
|
* 环境变量枚举 |
|
|
* 环境变量枚举 |
|
|
*/ |
|
|
*/ |
|
|
LOCAL("local", "本地环境", "http://localhost:8080/api/"), |
|
|
LOCAL("local", "市北-本地环境", "http://localhost:8080/api/"), |
|
|
DEV("dev", "开发环境", "http://192.168.1.140:8080/api/"), |
|
|
DEV("dev", "市北-开发环境", "http://192.168.1.140:8080/api/"), |
|
|
TEST("test", "体验环境", "https://epmet-dev.elinkservice.cn/api/"), |
|
|
TEST("test", "市北-体验环境", "https://epmet-dev.elinkservice.cn/api/"), |
|
|
PROD("prod", "生产环境", "https://epmet-cloud.elinkservice.cn/api/"), |
|
|
PROD("prod", "市北-生产环境", "https://epmet-cloud.elinkservice.cn/api/"), |
|
|
UN_KNOWN("un_known", "未知", "https://epmet-dev.elinkservice.cn/api/"), |
|
|
UN_KNOWN("un_known", "未知", "https://epmet-dev.elinkservice.cn/api/"), |
|
|
; |
|
|
; |
|
|
|
|
|
|
|
|