Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BauabschnittView
Please create a React-JS view called "BauabschnittView" for the fields of the Bauabschnitt entity. The BauabschnittView must contain the following fields: - name: AbschnittNummer type: INT - name: Baustelle type: Baustelle - name: Beginn type: DATE - name: Beschreibung type: STRING - name: Bezeichnung type: STRING - name: Ende type: DATE The data source for the [Baustelle] select control should be loaded from the relative URL: "/BaustelleService/baustelle" (HTTP-GET) An existing Bauabschnitt entity should be loaded from the relative URL: "/BauabschnittService/bauabschnitt/{id}" (HTTP-GET) If a new Bauabschnitt entity has been created, the new entity should be posted to the relative URL: "/BauabschnittService/bauabschnitt" (HTTP-POST) If an existing Bauabschnitt entity has been updated, the modified entity should be sent to the relative URL: "/BauabschnittService/bauabschnitt/{id}" (HTTP-PUT) If an existing Bauabschnitt entity has to be deleted, the following relative URL should be called: "/BauabschnittService/bauabschnitt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Baulos columns: - column: Bauabschnitt - column: Beschreibung - column: Ende - column: Bezeichnung - column: Beginn The table should have the title "Bauloss" und the data must be loaded from the server with the following relative URL: "/BauabschnittService/baulos/bauabschnitt/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum