Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ProjektionsTechnikApp
Please create a React-JS application for the ProjektionsTechnikModule. The application has to offer the following views for the user interface: 1. ArchitekturstilView 2. KinoArchitekturView 3. ProjektionsTechnikView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The ArchitekturstilView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Architekturstil entity should be loaded from the relative URL: "/ProjektionsTechnikService/architekturstil/{id}" (HTTP-GET) If a new Architekturstil entity has been created, the new entity should be posted to the relative URL: "/ProjektionsTechnikService/architekturstil" (HTTP-POST) If an existing Architekturstil entity has been updated, the modified entity should be sent to the relative URL: "/ProjektionsTechnikService/architekturstil/{id}" (HTTP-PUT) If an existing Architekturstil entity has to be deleted, the following relative URL should be called: "/ProjektionsTechnikService/architekturstil/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KinoArchitektur columns: - column: Kino - column: BisJahr - column: Architekturstil - column: VonJahr The table should have the title "KinoArchitekturs" und the data must be loaded from the server with the following relative URL: "/ProjektionsTechnikService/kinoarchitektur/architekturstil/{id}" 2. The KinoArchitekturView must contain the following fields: - name: Architekturstil type: Architekturstil - name: BisJahr type: LONG - name: Kino type: Kino - name: VonJahr type: LONG The data source for the [Architekturstil] select control should be loaded from the relative URL: "/ProjektionsTechnikService/architekturstil" (HTTP-GET) The data source for the [Kino] select control should be loaded from the relative URL: "/KinoService/kino" (HTTP-GET) An existing KinoArchitektur entity should be loaded from the relative URL: "/ProjektionsTechnikService/kinoarchitektur/{id}" (HTTP-GET) If a new KinoArchitektur entity has been created, the new entity should be posted to the relative URL: "/ProjektionsTechnikService/kinoarchitektur" (HTTP-POST) If an existing KinoArchitektur entity has been updated, the modified entity should be sent to the relative URL: "/ProjektionsTechnikService/kinoarchitektur/{id}" (HTTP-PUT) If an existing KinoArchitektur entity has to be deleted, the following relative URL should be called: "/ProjektionsTechnikService/kinoarchitektur/{id}" (HTTP-DELETE) 3. The ProjektionsTechnikView must contain the following fields: - name: Beschreibung type: STRING - name: IstDigital type: BOOL - name: Name type: STRING An existing ProjektionsTechnik entity should be loaded from the relative URL: "/ProjektionsTechnikService/projektionstechnik/{id}" (HTTP-GET) If a new ProjektionsTechnik entity has been created, the new entity should be posted to the relative URL: "/ProjektionsTechnikService/projektionstechnik" (HTTP-POST) If an existing ProjektionsTechnik entity has been updated, the modified entity should be sent to the relative URL: "/ProjektionsTechnikService/projektionstechnik/{id}" (HTTP-PUT) If an existing ProjektionsTechnik entity has to be deleted, the following relative URL should be called: "/ProjektionsTechnikService/projektionstechnik/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SaalProjektionsTechnik columns: - column: BisDatum - column: ProjektionsTechnik - column: Saal - column: VonDatum The table should have the title "SaalProjektionsTechniks" und the data must be loaded from the server with the following relative URL: "/SaalService/saalprojektionstechnik/projektionstechnik/{id}" Add a HTML table to the view with the following Vorstellung columns: - column: Saal - column: ProjektionsTechnik - column: DigitalStandard - column: Film - column: Sprachversion - column: Endzeit - column: Startzeit - column: Ist3D - column: IstEffektkino - column: BasisTicketpreis - column: TonTechnik The table should have the title "Vorstellungs" und the data must be loaded from the server with the following relative URL: "/FilmService/vorstellung/projektionstechnik/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum