package com.hdl.log.enums; /** * Created by hxb on 2023/3/14. * 报警等级定义 */ public enum Level { high("high", "高"), middle("middle", "中"), low("low", "低"); private String code; private String msg; Level(String code, String msg) { this.msg = msg; this.code = code; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getMsg() { return msg; } public void setMsg(String msg) { this.msg = msg; } }