init telosys
This commit is contained in:
9
TelosysTools/models/InfiniMotion/Eintrittskarte.entity
Normal file
9
TelosysTools/models/InfiniMotion/Eintrittskarte.entity
Normal file
@@ -0,0 +1,9 @@
|
||||
// Entity Eintrittskarte
|
||||
|
||||
Eintrittskarte {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
show: Vorstellung {} ;
|
||||
seat: Sitzplatz {} ;
|
||||
code: string {} ;
|
||||
state: Kartenstatus {} ;
|
||||
}
|
||||
11
TelosysTools/models/InfiniMotion/Film.entity
Normal file
11
TelosysTools/models/InfiniMotion/Film.entity
Normal file
@@ -0,0 +1,11 @@
|
||||
// Entity Film
|
||||
|
||||
Film {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
title: string {} ;
|
||||
description: string {} ;
|
||||
duration: int {} ;
|
||||
image: string {} ;
|
||||
rating: short {} ;
|
||||
category: Filmkategorie {} ;
|
||||
}
|
||||
6
TelosysTools/models/InfiniMotion/Filmkategorie.entity
Normal file
6
TelosysTools/models/InfiniMotion/Filmkategorie.entity
Normal file
@@ -0,0 +1,6 @@
|
||||
// Entity Filmkategorie
|
||||
|
||||
Filmkategorie {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
name: string {} ;
|
||||
}
|
||||
6
TelosysTools/models/InfiniMotion/Kartenstatus.entity
Normal file
6
TelosysTools/models/InfiniMotion/Kartenstatus.entity
Normal file
@@ -0,0 +1,6 @@
|
||||
// Entity Kartenstatus
|
||||
|
||||
Kartenstatus {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
name: string {} ;
|
||||
}
|
||||
6
TelosysTools/models/InfiniMotion/Kinosaal.entity
Normal file
6
TelosysTools/models/InfiniMotion/Kinosaal.entity
Normal file
@@ -0,0 +1,6 @@
|
||||
// Entity Kinosaal
|
||||
|
||||
Kinosaal {
|
||||
id : int { @Id @AutoIncremented } ;
|
||||
name : string {} ;
|
||||
}
|
||||
6
TelosysTools/models/InfiniMotion/Sitzkategorie.entity
Normal file
6
TelosysTools/models/InfiniMotion/Sitzkategorie.entity
Normal file
@@ -0,0 +1,6 @@
|
||||
// Entity Sitzkategorie
|
||||
|
||||
Sitzkategorie {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
name: string { } ;
|
||||
}
|
||||
7
TelosysTools/models/InfiniMotion/Sitzplatz.entity
Normal file
7
TelosysTools/models/InfiniMotion/Sitzplatz.entity
Normal file
@@ -0,0 +1,7 @@
|
||||
// Entity Sitzplatz
|
||||
|
||||
Sitzplatz {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
row: Sitzreihe {} ;
|
||||
position: int {} ;
|
||||
}
|
||||
8
TelosysTools/models/InfiniMotion/Sitzreihe.entity
Normal file
8
TelosysTools/models/InfiniMotion/Sitzreihe.entity
Normal file
@@ -0,0 +1,8 @@
|
||||
// Entity Sitzreihe
|
||||
|
||||
Sitzreihe {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
hall: Kinosaal {} ;
|
||||
position: int {} ;
|
||||
category: Sitzkategorie {} ;
|
||||
}
|
||||
8
TelosysTools/models/InfiniMotion/Vorstellung.entity
Normal file
8
TelosysTools/models/InfiniMotion/Vorstellung.entity
Normal file
@@ -0,0 +1,8 @@
|
||||
// Entity Vorstellung
|
||||
|
||||
Vorstellung {
|
||||
id: int { @Id @AutoIncremented } ;
|
||||
hall: Kinosaal {} ;
|
||||
movie: Film {} ;
|
||||
start: date {} ;
|
||||
}
|
||||
4
TelosysTools/models/InfiniMotion/model.yaml
Normal file
4
TelosysTools/models/InfiniMotion/model.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
# Telosys model info
|
||||
title: InfiniModel
|
||||
version: 1.0.0
|
||||
description: InfiniMotion-Model
|
||||
Reference in New Issue
Block a user