package com.cloudroam.common.enumeration; import lombok.Getter; public enum FileReTypeEnum { BUSINESS_GANTT("BUSINESS_GANTT","商务日志甘特图"), PROJECT_TASK("PROJECT_TASK","任务日志"), ; @Getter private String message; @Getter private String code; private FileReTypeEnum(String code, String message){ this.code=code; this.message=message; } }