Files
hertzbeat/web-app/src/app/pojo/Alert.ts

12 lines
206 B
TypeScript
Raw Normal View History

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