order api + statistics + plantuml fix
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
// Entity OmdbMovie
|
||||
|
||||
#Omdb
|
||||
#AddonModel
|
||||
OmdbMovie {
|
||||
imdbID: string {} ;
|
||||
title: string {} ;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// Entity OmdbSearch
|
||||
|
||||
#Omdb
|
||||
#AddonModel
|
||||
OmdbSearch {
|
||||
search: OmdbMovie[] {} ;
|
||||
}
|
||||
|
||||
7
TelosysTools/models/InfiniMotion/OrderTransaction.entity
Normal file
7
TelosysTools/models/InfiniMotion/OrderTransaction.entity
Normal file
@@ -0,0 +1,7 @@
|
||||
// Entity OrderTransaction
|
||||
|
||||
#AddonModel
|
||||
OrderTransaction {
|
||||
order: Bestellung { } ;
|
||||
tickets: Eintrittskarte[] {} ;
|
||||
}
|
||||
@@ -4,5 +4,5 @@
|
||||
StatisticsFilm {
|
||||
movie: Film {};
|
||||
tickets: Eintrittskarte[] {};
|
||||
earnings: int {};
|
||||
earnings: int { @NotNull };
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
// Entity StatisticsFilmReduced
|
||||
|
||||
#AddonModel
|
||||
StatisticsFilmReduced {
|
||||
movie: Film {};
|
||||
tickets: int { @NotNull };
|
||||
earnings: int { @NotNull };
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// Entity OmdbMovie
|
||||
|
||||
#AddonModel
|
||||
StatisticsReduced {
|
||||
movies: StatisticsFilmReduced[] {};
|
||||
shows: StatisticsVorstellungReduced[] {};
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
#Statistics
|
||||
StatisticsVorstellung {
|
||||
show: Vorstellung {};
|
||||
tickets: Eintrittskarte[] {};
|
||||
earnings: int {};
|
||||
show: Vorstellung { };
|
||||
tickets: Eintrittskarte[] { };
|
||||
earnings: int { @NotNull };
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
// Entity StatisticsVorstellungReduced
|
||||
|
||||
#AddonModel
|
||||
StatisticsVorstellungReduced {
|
||||
show: Vorstellung {} ;
|
||||
tickets: int { @NotNull };
|
||||
earnings: int { @NotNull };
|
||||
}
|
||||
Reference in New Issue
Block a user