package com.tongran.rocketmq.enums; import lombok.Getter; @Getter public enum ConditionItemEnum { 服务器CPU使用率("1", "服务器CPU使用率"), 出省流量占比过高("2", "出省流量占比过高"); private final String code; private final String msg; ConditionItemEnum(String code, String msg){ this.code = code; this.msg = msg; } }