Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TechnischesHilfswerkApp
Please create a React-JS application for the TechnischesHilfswerkModule. The application has to offer the following views for the user interface: 1. AusbildungszentrumView 2. AuslandseinheitView 3. LogistikzentrumView 4. TechnischesHilfswerkView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The AusbildungszentrumView must contain the following fields: - name: Name type: STRING - name: Schwerpunkt type: STRING - name: StandortBundesland type: STRING - name: StandortStadt type: STRING - name: TechnischesHilfswerk type: TechnischesHilfswerk The data source for the [TechnischesHilfswerk] select control should be loaded from the relative URL: "/TechnischesHilfswerkService/technischeshilfswerk" (HTTP-GET) An existing Ausbildungszentrum entity should be loaded from the relative URL: "/TechnischesHilfswerkService/ausbildungszentrum/{id}" (HTTP-GET) If a new Ausbildungszentrum entity has been created, the new entity should be posted to the relative URL: "/TechnischesHilfswerkService/ausbildungszentrum" (HTTP-POST) If an existing Ausbildungszentrum entity has been updated, the modified entity should be sent to the relative URL: "/TechnischesHilfswerkService/ausbildungszentrum/{id}" (HTTP-PUT) If an existing Ausbildungszentrum entity has to be deleted, the following relative URL should be called: "/TechnischesHilfswerkService/ausbildungszentrum/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Personenrolle columns: - column: Regionalstelle - column: Ausbildungszentrum - column: Landesverband - column: Person - column: Rollenart - column: TechnischerZug - column: VonDatum - column: Ortsverband - column: BisDatum - column: Logistikzentrum - column: IstAktuell The table should have the title "Personenrolles" und the data must be loaded from the server with the following relative URL: "/PersonService/personenrolle/ausbildungszentrum/{id}" 2. The AuslandseinheitView must contain the following fields: - name: AuslandseinheitArt type: AuslandseinheitArt - name: BasisLand type: STRING - name: BasisStadt type: STRING - name: Name type: STRING - name: TechnischesHilfswerk type: TechnischesHilfswerk The data source for the [TechnischesHilfswerk] select control should be loaded from the relative URL: "/TechnischesHilfswerkService/technischeshilfswerk" (HTTP-GET) The data source for the [AuslandseinheitArt] select control should be loaded from the relative URL: "/LandesverbandService/auslandseinheitart" (HTTP-GET) An existing Auslandseinheit entity should be loaded from the relative URL: "/TechnischesHilfswerkService/auslandseinheit/{id}" (HTTP-GET) If a new Auslandseinheit entity has been created, the new entity should be posted to the relative URL: "/TechnischesHilfswerkService/auslandseinheit" (HTTP-POST) If an existing Auslandseinheit entity has been updated, the modified entity should be sent to the relative URL: "/TechnischesHilfswerkService/auslandseinheit/{id}" (HTTP-PUT) If an existing Auslandseinheit entity has to be deleted, the following relative URL should be called: "/TechnischesHilfswerkService/auslandseinheit/{id}" (HTTP-DELETE) Add a HTML table to the view with the following EinsatzBeteiligteEinheit columns: - column: Ortsverband - column: Auslandseinheit - column: TechnischerZug - column: Einsatz - column: Rollenbeschreibung - column: Fachgruppe - column: Bergungsgruppe The table should have the title "EinsatzBeteiligteEinheits" und the data must be loaded from the server with the following relative URL: "/OrtsverbandService/einsatzbeteiligteeinheit/auslandseinheit/{id}" 3. The LogistikzentrumView must contain the following fields: - name: Landesverband type: Landesverband - name: Name type: STRING - name: Schwerpunkt type: STRING - name: StandortBundesland type: STRING - name: StandortStadt type: STRING - name: TechnischesHilfswerk type: TechnischesHilfswerk The data source for the [Landesverband] select control should be loaded from the relative URL: "/LandesverbandService/landesverband" (HTTP-GET) The data source for the [TechnischesHilfswerk] select control should be loaded from the relative URL: "/TechnischesHilfswerkService/technischeshilfswerk" (HTTP-GET) An existing Logistikzentrum entity should be loaded from the relative URL: "/TechnischesHilfswerkService/logistikzentrum/{id}" (HTTP-GET) If a new Logistikzentrum entity has been created, the new entity should be posted to the relative URL: "/TechnischesHilfswerkService/logistikzentrum" (HTTP-POST) If an existing Logistikzentrum entity has been updated, the modified entity should be sent to the relative URL: "/TechnischesHilfswerkService/logistikzentrum/{id}" (HTTP-PUT) If an existing Logistikzentrum entity has to be deleted, the following relative URL should be called: "/TechnischesHilfswerkService/logistikzentrum/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Ausruestung columns: - column: Seriennummer - column: Ortsverband - column: Name - column: Bergungsgruppe - column: Kategorie - column: TechnischerZug - column: Beschreibung - column: Logistikzentrum - column: Fachgruppe The table should have the title "Ausruestungs" und the data must be loaded from the server with the following relative URL: "/OrtsverbandService/ausruestung/logistikzentrum/{id}" Add a HTML table to the view with the following Personenrolle columns: - column: Regionalstelle - column: Ausbildungszentrum - column: Landesverband - column: Person - column: Rollenart - column: TechnischerZug - column: VonDatum - column: Ortsverband - column: BisDatum - column: Logistikzentrum - column: IstAktuell The table should have the title "Personenrolles" und the data must be loaded from the server with the following relative URL: "/PersonService/personenrolle/logistikzentrum/{id}" 4. The TechnischesHilfswerkView must contain the following fields: - name: BudgetBetrag type: STRING - name: BudgetJahr type: INT - name: Gruendungsdatum type: DATE - name: Name type: STRING - name: SitzBundesland type: STRING - name: SitzStadt type: STRING - name: Webseite type: STRING An existing TechnischesHilfswerk entity should be loaded from the relative URL: "/TechnischesHilfswerkService/technischeshilfswerk/{id}" (HTTP-GET) If a new TechnischesHilfswerk entity has been created, the new entity should be posted to the relative URL: "/TechnischesHilfswerkService/technischeshilfswerk" (HTTP-POST) If an existing TechnischesHilfswerk entity has been updated, the modified entity should be sent to the relative URL: "/TechnischesHilfswerkService/technischeshilfswerk/{id}" (HTTP-PUT) If an existing TechnischesHilfswerk entity has to be deleted, the following relative URL should be called: "/TechnischesHilfswerkService/technischeshilfswerk/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Ausbildungszentrum columns: - column: StandortStadt - column: Schwerpunkt - column: Name - column: StandortBundesland - column: TechnischesHilfswerk The table should have the title "Ausbildungszentrums" und the data must be loaded from the server with the following relative URL: "/TechnischesHilfswerkService/ausbildungszentrum/technischeshilfswerk/{id}" Add a HTML table to the view with the following Logistikzentrum columns: - column: StandortStadt - column: Name - column: Landesverband - column: Schwerpunkt - column: TechnischesHilfswerk - column: StandortBundesland The table should have the title "Logistikzentrums" und the data must be loaded from the server with the following relative URL: "/TechnischesHilfswerkService/logistikzentrum/technischeshilfswerk/{id}" Add a HTML table to the view with the following Landesverband columns: - column: Kennung - column: SitzBundesland - column: TechnischesHilfswerk - column: SitzStadt - column: Name The table should have the title "Landesverbands" und the data must be loaded from the server with the following relative URL: "/LandesverbandService/landesverband/technischeshilfswerk/{id}" Add a HTML table to the view with the following Auslandseinheit columns: - column: TechnischesHilfswerk - column: AuslandseinheitArt - column: Name - column: BasisLand - column: BasisStadt The table should have the title "Auslandseinheits" und the data must be loaded from the server with the following relative URL: "/TechnischesHilfswerkService/auslandseinheit/technischeshilfswerk/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum