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

This commit is contained in:
tomsun28
2021-12-13 14:51:08 +08:00
parent 253e8d85e5
commit 43d0e1b8ef
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;
}