整理下初始化数据表

This commit is contained in:
dengqichen 2025-12-08 15:54:09 +08:00
parent b5fe3c96f6
commit 798691d068

View File

@ -0,0 +1,32 @@
package com.qqchen.deploy.backend.framework.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* 服务器告警状态枚举
*
* @author qqchen
* @since 2025-12-08
*/
@Getter
@AllArgsConstructor
public enum ServerAlertStatusEnum {
/**
* 待处理 - 等待持续时间验证
*/
PENDING("PENDING", "待处理"),
/**
* 活跃 - 告警已激活
*/
ACTIVE("ACTIVE", "活跃"),
/**
* 已解决 - 告警已恢复
*/
RESOLVED("RESOLVED", "已解决");
private final String code;
private final String description;
}