From 9c6591b5c6f548ebbe294f755c112e674eef1e96 Mon Sep 17 00:00:00 2001 From: Lennart Heinrich Date: Fri, 24 Oct 2025 01:13:05 +0200 Subject: [PATCH] kinosaal crud --- .../models/InfiniMotion/CommandDeleteKinosaal.entity | 5 +++++ .../models/InfiniMotion/CommandDeleteKinosaalResponse.entity | 5 +++++ .../models/InfiniMotion/CommandUpdateKinosaal.entity | 5 +++++ .../models/InfiniMotion/CommandUpdateKinosaalResponse.entity | 5 +++++ TelosysTools/telosys-tools.cfg | 2 +- 5 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 TelosysTools/models/InfiniMotion/CommandDeleteKinosaal.entity create mode 100644 TelosysTools/models/InfiniMotion/CommandDeleteKinosaalResponse.entity create mode 100644 TelosysTools/models/InfiniMotion/CommandUpdateKinosaal.entity create mode 100644 TelosysTools/models/InfiniMotion/CommandUpdateKinosaalResponse.entity diff --git a/TelosysTools/models/InfiniMotion/CommandDeleteKinosaal.entity b/TelosysTools/models/InfiniMotion/CommandDeleteKinosaal.entity new file mode 100644 index 0000000..fa3ebad --- /dev/null +++ b/TelosysTools/models/InfiniMotion/CommandDeleteKinosaal.entity @@ -0,0 +1,5 @@ +#Command +@Extends(Command) +CommandDeleteKinosaal { + hall: Kinosaal {} ; +} diff --git a/TelosysTools/models/InfiniMotion/CommandDeleteKinosaalResponse.entity b/TelosysTools/models/InfiniMotion/CommandDeleteKinosaalResponse.entity new file mode 100644 index 0000000..97b75e3 --- /dev/null +++ b/TelosysTools/models/InfiniMotion/CommandDeleteKinosaalResponse.entity @@ -0,0 +1,5 @@ +#Command +@Extends(Command) +CommandDeleteKinosaalResponse { + hall: Kinosaal {} ; +} diff --git a/TelosysTools/models/InfiniMotion/CommandUpdateKinosaal.entity b/TelosysTools/models/InfiniMotion/CommandUpdateKinosaal.entity new file mode 100644 index 0000000..0afd3b7 --- /dev/null +++ b/TelosysTools/models/InfiniMotion/CommandUpdateKinosaal.entity @@ -0,0 +1,5 @@ +#Command +@Extends(Command) +CommandUpdateKinosaal { + hall: Kinosaal {} ; +} diff --git a/TelosysTools/models/InfiniMotion/CommandUpdateKinosaalResponse.entity b/TelosysTools/models/InfiniMotion/CommandUpdateKinosaalResponse.entity new file mode 100644 index 0000000..3e57915 --- /dev/null +++ b/TelosysTools/models/InfiniMotion/CommandUpdateKinosaalResponse.entity @@ -0,0 +1,5 @@ +#Command +@Extends(Command) +CommandUpdateKinosaalResponse { + hall: Kinosaal {} ; +} diff --git a/TelosysTools/telosys-tools.cfg b/TelosysTools/telosys-tools.cfg index 389305c..4db6136 100644 --- a/TelosysTools/telosys-tools.cfg +++ b/TelosysTools/telosys-tools.cfg @@ -22,7 +22,7 @@ ENTITY_PKG=de.infinimotion.model.bean ProjectVariable.MAVEN_ARTIFACT_ID=model ProjectVariable.MAVEN_GROUP_ID=de.infinimotion ProjectVariable.PROJECT_NAME=infinimodel -ProjectVariable.PROJECT_VERSION=0.0.54 +ProjectVariable.PROJECT_VERSION=0.0.55 ProjectVariable.REST_SERVER_PORT=3000 ProjectVariable.REST_API_ROOT=/api/v1 ProjectVariable.REST_URL_ROOT=http://localhost:3000