inspection fetch

This commit is contained in:
Julian Krauser 2025-07-09 12:57:37 +02:00
parent a0a8edf7af
commit 95b6cec66d
6 changed files with 189 additions and 21 deletions

View file

@ -24,6 +24,9 @@ export class inspection {
@Column({ type: getTypeByORM("date").type as ColumnType, nullable: true, default: null })
nextInspection?: Date;
@Column({ type: "boolean", default: false })
hasNewer: boolean;
@Column()
inspectionPlanId: string;