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; } }