Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BehoerdeApp
Please create a React-JS application for the BehoerdeModule. The application has to offer the following views for the user interface: 1. BehoerdeView 2. ZusatzBeschilderungView 3. ZusatzBeschilderungTypView 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 BehoerdeView must contain the following fields: - name: Behoerdenart type: STRING - name: Beschreibung type: STRING - name: Land type: Land - name: Name type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Behoerde entity should be loaded from the relative URL: "/BehoerdeService/behoerde/{id}" (HTTP-GET) If a new Behoerde entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/behoerde" (HTTP-POST) If an existing Behoerde entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/behoerde/{id}" (HTTP-PUT) If an existing Behoerde entity has to be deleted, the following relative URL should be called: "/BehoerdeService/behoerde/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verkehrszeichen columns: - column: VerkehrszeichenSystem - column: GueltigVon - column: Beschreibung - column: GueltigBis - column: IstMarkierung - column: IstAmtlich - column: IstVariabel - column: Code - column: ZeichenKategorie - column: Rechtsgrundlage - column: ZeichenForm - column: Kurzbezeichnung - column: ZeichenFunktion - column: Piktogramm - column: Langbezeichnung - column: Farbschema - column: Behoerde The table should have the title "Verkehrszeichens" und the data must be loaded from the server with the following relative URL: "/VerkehrszeichenService/verkehrszeichen/behoerde/{id}" Add a HTML table to the view with the following ZusatzBeschilderung columns: - column: StandortBeschreibung - column: Name - column: Land - column: ZusatzBeschilderungTyp - column: IstAmtlich - column: Beschreibung - column: Behoerde The table should have the title "ZusatzBeschilderungs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/zusatzbeschilderung/behoerde/{id}" 2. The ZusatzBeschilderungView must contain the following fields: - name: Behoerde type: Behoerde - name: Beschreibung type: STRING - name: IstAmtlich type: BOOL - name: Land type: Land - name: Name type: STRING - name: StandortBeschreibung type: STRING - name: ZusatzBeschilderungTyp type: ZusatzBeschilderungTyp The data source for the [ZusatzBeschilderungTyp] select control should be loaded from the relative URL: "/BehoerdeService/zusatzbeschilderungtyp" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing ZusatzBeschilderung entity should be loaded from the relative URL: "/BehoerdeService/zusatzbeschilderung/{id}" (HTTP-GET) If a new ZusatzBeschilderung entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/zusatzbeschilderung" (HTTP-POST) If an existing ZusatzBeschilderung entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/zusatzbeschilderung/{id}" (HTTP-PUT) If an existing ZusatzBeschilderung entity has to be deleted, the following relative URL should be called: "/BehoerdeService/zusatzbeschilderung/{id}" (HTTP-DELETE) 3. The ZusatzBeschilderungTypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing ZusatzBeschilderungTyp entity should be loaded from the relative URL: "/BehoerdeService/zusatzbeschilderungtyp/{id}" (HTTP-GET) If a new ZusatzBeschilderungTyp entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/zusatzbeschilderungtyp" (HTTP-POST) If an existing ZusatzBeschilderungTyp entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/zusatzbeschilderungtyp/{id}" (HTTP-PUT) If an existing ZusatzBeschilderungTyp entity has to be deleted, the following relative URL should be called: "/BehoerdeService/zusatzbeschilderungtyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZusatzBeschilderung columns: - column: StandortBeschreibung - column: Name - column: Land - column: ZusatzBeschilderungTyp - column: IstAmtlich - column: Beschreibung - column: Behoerde The table should have the title "ZusatzBeschilderungs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/zusatzbeschilderung/zusatzbeschilderungtyp/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum