Commit d8726fc5 authored by suhuiguang's avatar suhuiguang

1.修改枚举描述位置-全景监控

parent 8f795598
......@@ -8,21 +8,21 @@ public enum View3dRefreshAreaEum {
/**
* 3d页面数据区域
*/
all("all","全部区域"),
today_safety_index("today_safety_index","今日安全指数"),
fire_safety("fire_safety","消防安全执行"),
week_safety_index("week_safety_index","一周安全指数趋势"),
today_check_status("today_check_status","今日巡检情况"),
today_duty("today_duty","今日值班");
all("全部区域","all"),
today_safety_index("今日安全指数","today_safety_index"),
fire_safety("消防安全执行","fire_safety"),
week_safety_index("一周安全指数趋势","week_safety_index"),
today_check_status("今日巡检情况","today_check_status"),
today_duty("今日值班","today_duty");
private String code;
private String name;
View3dRefreshAreaEum(String code,String name){
this.code = code;
View3dRefreshAreaEum(String name,String code){
this.name = name;
this.code = code;
}
public String getCode() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment