fix(告警中心): 新增告警配置时默认启用 (#358)

This commit is contained in:
tancong 2023-07-18 10:45:36 +08:00 committed by GitHub
parent a26474a243
commit ae7f083e95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public class AlarmConfigEntity extends GenericEntity<String> implements RecordCr
@Column(length = 32, nullable = false)
@EnumCodec
@ColumnType(javaType = String.class)
@DefaultValue("disabled")
@DefaultValue("enabled")
@Schema(description = "状态")
private AlarmState state;