X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Form%2Fentities%2FPerformanceRecord.ts;h=bdd88abaeb6cd04e4ab8fc79752343ade355d295;hb=5dcb9d4945027c6be39e4342f1627ea2da3813b7;hp=dbe9ceeca87e4160e66f73c2c5ccced5edf0ab4e;hpb=a8599ae9ed113db82ee4857c7a660faca5ec7fb8;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/orm/entities/PerformanceRecord.ts b/src/types/orm/entities/PerformanceRecord.ts index dbe9ceec..bdd88aba 100644 --- a/src/types/orm/entities/PerformanceRecord.ts +++ b/src/types/orm/entities/PerformanceRecord.ts @@ -1,6 +1,6 @@ import { Entity, PrimaryKey, Property } from '@mikro-orm/core' -interface PerformanceData { +interface StatisticsData { name: string requestCount: number responseCount: number @@ -38,5 +38,5 @@ export class PerformanceRecord { updatedAt?: Date @Property() - performanceData!: PerformanceData[] + statisticsData!: Array> }