package com.backendsys.modules.sse.entity; public enum SseResponseEnum { CONNECT("connect", "建立连接"), DISCONNECT("disconnect", "断开连接"), NOTICE("notice", "通知"), UPLOAD("upload", "上传"); private String type; private String message; public String getType() { return this.type; } public String getMessage() { return this.message; } SseResponseEnum(String type, String message) { this.type = type; this.message = message; } }