[web-app] 告警中心告警列表展示

This commit is contained in:
tomsun28
2021-12-13 14:51:08 +08:00
parent 83449a8556
commit e22dcf30bc
10 changed files with 229 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
export class Alert {
id!: number;
target!: string;
monitorId!: number;
monitorName!: string;
priority: number = 2;
status!: number;
content!: string;
duration!: number;
gmtCreate!: number;
}