济菏高速数据中心代码
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.
 
 
 
 
 

31 lines
648 B

package com.zc.business.enums;
/**
*
*/
//事件来源枚举
public enum EventSource {
VIDEO(1, "96656"),
TRAFFIC_POLICE(2,"交警转接"),
ROAD_PATROL(3,"道路巡查"),
VIDEO_INSPECTION(4,"视频巡查"),
VIDEO_AI(5,"视频AI"),
ONE_CLICK_RESCUE(6,"一键救援"),
REST(7,"其他");
private final Integer code;
private final String description;
EventSource(Integer code, String description) {
this.code = code;
this.description = description;
}
public Integer getCode()
{
return code;
}
public String getDescription() {
return description;
}
}