X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Form%2Fentities%2FPerformanceRecord.ts;h=06114da6be0a602422504d2e238a6b3792cae81a;hb=69074173770c04bc5e5aa744b655edf9491daa46;hp=c0d2ab800d3ab63b5d09fc851f397a506cd0b714;hpb=ae8ee665e864460d582b7f6d501b25225a1d7a4c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/orm/entities/PerformanceRecord.ts b/src/types/orm/entities/PerformanceRecord.ts index c0d2ab80..06114da6 100644 --- a/src/types/orm/entities/PerformanceRecord.ts +++ b/src/types/orm/entities/PerformanceRecord.ts @@ -1,25 +1,19 @@ import { Collection, Entity, OneToMany, PrimaryKey, Property } from '@mikro-orm/core'; -import { PerformanceData } from './PerformanceData'; +import type { PerformanceData } from './PerformanceData'; @Entity() export class PerformanceRecord { // @PrimaryKey() // pk!: number; - // @Property() // id!: string; - // @Property() // URI!: string; - // @Property() // createdAt!: Date; - // @Property() // updatedAt?: Date; - // @OneToMany('PerformanceData', 'performanceRecord') - // performanceData?= new Collection(this); + // performanceData? = new Collection(this); } -