增加地点枚举

This commit is contained in:
wangliwen 2022-06-21 09:47:04 +08:00
parent 2d41de0c66
commit ae61f7fcc5
2 changed files with 30 additions and 0 deletions

View File

@ -1,3 +1,6 @@
project:
# 平台部署位置 0青岛市区 1青岛西海岸 2包头
place:
# 大数据部门相关配置 # 大数据部门相关配置
big_date: big_date:
name: 青岛市大数据发展管理局 name: 青岛市大数据发展管理局

View File

@ -212,4 +212,31 @@ public interface Constant {
return value; return value;
} }
} }
/**
* 项目运行地点
*/
enum ProjectPlace {
/**
* 青岛市区
*/
TSINGTAO(0),
/**
* 青岛西海岸
*/
TSINGTAO_XHA(1),
/**
* 包头
*/
BAOTOU(2);
private int value;
ProjectPlace(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}
} }