Files
hertzbeat/web-app/src/app/pojo/Alert.ts
2021-12-13 14:51:08 +08:00

12 lines
209 B
TypeScript

export class Alert {
id!: number;
target!: string;
monitorId!: number;
monitorName!: string;
priority: number = 2;
status!: number;
content!: string;
duration!: number;
gmtCreate!: number;
}