Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
EinsatzView
Please create a React-JS view called "EinsatzView" for the fields of the Einsatz entity. The EinsatzView must contain the following fields: - name: Beschreibung type: STRING - name: Bundesland type: STRING - name: Einsatzart type: Einsatzart - name: EndDatum type: DATE - name: IstAuslandseinsatz type: BOOL - name: IstKatastrophenschutz type: BOOL - name: IstZivilschutz type: BOOL - name: Land type: STRING - name: Stadt type: STRING - name: StartDatum type: DATE - name: Titel type: STRING The data source for the [Einsatzart] select control should be loaded from the relative URL: "/EinsatzartService/einsatzart" (HTTP-GET) An existing Einsatz entity should be loaded from the relative URL: "/EinsatzartService/einsatz/{id}" (HTTP-GET) If a new Einsatz entity has been created, the new entity should be posted to the relative URL: "/EinsatzartService/einsatz" (HTTP-POST) If an existing Einsatz entity has been updated, the modified entity should be sent to the relative URL: "/EinsatzartService/einsatz/{id}" (HTTP-PUT) If an existing Einsatz entity has to be deleted, the following relative URL should be called: "/EinsatzartService/einsatz/{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/einsatz/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum