fix: fix get composite schedule rejection condition
[e-mobility-charging-stations-simulator.git] / src / types / orm / entities / PerformanceRecord.ts
index c752e0997af013b2613c5cfc855c9e5dcd651292..36db5c5bc1b2f19235afac093074c3db4aabe310 100644 (file)
@@ -7,15 +7,15 @@ 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)
 }