fix: fix get composite schedule rejection condition
[e-mobility-charging-stations-simulator.git] / src / types / orm / entities / PerformanceRecord.ts
index 1369377d7207db7b4484058aa9607f52fe7f50ae..36db5c5bc1b2f19235afac093074c3db4aabe310 100644 (file)
@@ -1,19 +1,21 @@
-import { Collection, Entity, OneToMany, 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 type { PerformanceData } from '../../internal';
+// eslint-disable-next-line @typescript-eslint/no-unused-vars
+import type { PerformanceData } from './PerformanceData.js'
 
 @Entity()
 export class PerformanceRecord {
   // @PrimaryKey()
-  // pk!: number;
+  //   pk!: number
   // @Property()
-  // id!: string;
+  //   id!: string
   // @Property()
-  // URI!: string;
+  //   URI!: string
   // @Property()
-  // createdAt!: Date;
+  //   createdAt!: Date
   // @Property()
-  // updatedAt?: Date;
+  //   updatedAt?: Date
   // @OneToMany('PerformanceData', 'performanceRecord')
-  // performanceData? = new Collection<PerformanceData>(this);
+  //   performanceData? = new Collection<PerformanceData>(this)
 }