mongodb statistics

This commit is contained in:
2025-11-14 01:19:25 +01:00
parent d3ac0759e7
commit 284bc3b21a
15 changed files with 108 additions and 5 deletions

View File

@@ -0,0 +1,4 @@
#Command
@Extends(Command)
CommandListStatistics {
}

View File

@@ -0,0 +1,6 @@
#Command
@Extends(Command)
CommandListStatisticsResponse {
movies: StatisticsFilm[] {};
shows: StatisticsVorstellung[] {};
}

View File

@@ -0,0 +1,8 @@
// Entity StatisticsFilm
#Statistics
StatisticsFilm {
movie: Film {};
tickets: Eintrittskarte[] {};
earnings: int {};
}

View File

@@ -0,0 +1,8 @@
// Entity StatisticsVorstellung
#Statistics
StatisticsVorstellung {
show: Vorstellung {};
tickets: Eintrittskarte[] {};
earnings: int {};
}