package enumeration; import lombok.Getter; /** * @author:xp * @date:2024/7/25 16:54 */ @Getter public enum OvertimeStatus { NOT(0, "未超时"), ALARM(1, "警告"), YES(2, "超时"), ; private final Integer value; private final String desc; OvertimeStatus(Integer value, String desc) { this.value = value; this.desc = desc; } }