package com.zc.business.enums; /** * */ //事件来源枚举 public enum EventSource { VIDEO_AI(1, "视频AI"); 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; } }