济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

77 lines
1.2 KiB

package com.zc.business.enums;
/**
* 情报板车道图标枚举
* @author
*/
public enum WeatherEventEnum {
//雨雾
RAIN_AND_FOG("1-1","雨雾"),
//雨雪
RAIN_AND_SNOW("1-2","雨雪"),
//中雨
MODERATE_RAIN("1-3","中雨"),
//小雨
SPIT("1-4","小雨"),
//大雨
HEAVY_RAIN("1-5","大雨"),
//暴雨
RAINSTORM("1-6","暴雨"),
//小雪
LIGHT_SNOW("2-1","小雪"),
//中雪
MODERATE_SNOW("2-2","中雪"),
//大雪
HEAVY_SNOW("2-3","大雪"),
//暴雪
BLIZZARD_TWO_FOUR("2-4","暴雪"),
//大暴雪
BLIZZARD_TWO_FIVE("2-5","大暴雪"),
//特大暴雪
HEAVY_SNOWSTORM("2-6","特大暴雪"),
//轻雾
MIST("3-1","轻雾"),
//大雾
HEAVY_FOG_THREE_TWO("3-2","大雾"),
//浓雾
FOG("3-3","浓雾"),
//强浓雾
HEAVY_FOG_THREE_FOUR("3-4","强浓雾"),
//团雾
AGGLOMERATE_FOG("3-5","团雾");
private final String code;
private final String value;
WeatherEventEnum(String value, String broadcastLogUrl) {
this.code = value;
this.value = broadcastLogUrl;
}
public String getCode() {
return this.code;
}
public String getValue() {
return value;
}
}