X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Form%2Fentities%2FPerformanceRecord.ts;h=997d01003e27e7699937b674ef0d32a6d83f0cec;hb=156c5f4ee0466adeb90e1e131e98b3f271955787;hp=41d38b39654c6bcf118591af3fbadcd6c9be42c9;hpb=a6b3c6c313f1c0314a1445ed630cac85edf55b2c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/orm/entities/PerformanceRecord.ts b/src/types/orm/entities/PerformanceRecord.ts index 41d38b39..997d0100 100644 --- a/src/types/orm/entities/PerformanceRecord.ts +++ b/src/types/orm/entities/PerformanceRecord.ts @@ -1,25 +1,21 @@ -import { Entity, PrimaryKey, Property } from '@mikro-orm/core'; +// eslint-disable-next-line @typescript-eslint/no-unused-vars +import { Collection, Entity, OneToMany, PrimaryKey, Property } from '@mikro-orm/core'; -import { PerformanceData } from './PerformanceData'; +// eslint-disable-next-line @typescript-eslint/no-unused-vars +import type { PerformanceData } from './PerformanceData'; @Entity() export class PerformanceRecord { // @PrimaryKey() // pk!: number; - // @Property() - // id: string; - + // id!: string; // @Property() - // URI: string; - + // URI!: string; + // @Property() + // createdAt!: Date; // @Property() - // createdAt: Date; - - // @Property({ nullable: true }) // updatedAt?: Date; - - // @Property({ nullable: true }) - // performanceData?: PerformanceData[]; + // @OneToMany('PerformanceData', 'performanceRecord') + // performanceData? = new Collection(this); } -