k94314517
2024-08-01 9d3e12b88c3b5556a9b186e7afcc813236cc126a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.core.constants;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * 异常等级
 * @author Eva.Caesar Liu
 * @date 2023/03/21 14:49
 */
@Getter
@AllArgsConstructor
public enum ExceptionLevel {
    DANGER((byte)10, "高"),
    WARN((byte)5, "中"),
    LOW((byte)0, "低"),
    ;
 
    private byte level;
 
    private String remark;
}