Commit 8f795598 authored by suhuiguang's avatar suhuiguang

1.3d区域-全景监控

parent b3ab5049
package com.yeejoin.amos.fas.common.enums;
/**
* @author suhg
*/
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","今日值班");
private String code;
private String name;
View3dRefreshAreaEum(String code,String name){
this.code = code;
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
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