Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VerkehrszeichenApp
Please create a React-JS application for the VerkehrszeichenModule. The application has to offer the following views for the user interface: 1. FarbschemaView 2. MarkierungView 3. MarkierungsMaterialView 4. VerkehrszeichenView 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 FarbschemaView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Farbschema entity should be loaded from the relative URL: "/VerkehrszeichenService/farbschema/{id}" (HTTP-GET) If a new Farbschema entity has been created, the new entity should be posted to the relative URL: "/VerkehrszeichenService/farbschema" (HTTP-POST) If an existing Farbschema entity has been updated, the modified entity should be sent to the relative URL: "/VerkehrszeichenService/farbschema/{id}" (HTTP-PUT) If an existing Farbschema entity has to be deleted, the following relative URL should be called: "/VerkehrszeichenService/farbschema/{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/farbschema/{id}" 2. The MarkierungView must contain the following fields: - name: Beschreibung type: STRING - name: Farbe type: STRING - name: MarkierungsMaterial type: MarkierungsMaterial - name: MarkierungsVerkehrsklasse type: MarkierungsVerkehrsklasse - name: Reflexionsklasse type: Reflexionsklasse - name: Struktur type: STRING - name: Verkehrszeichen type: Verkehrszeichen The data source for the [MarkierungsVerkehrsklasse] select control should be loaded from the relative URL: "/InternationaleKonventionService/markierungsverkehrsklasse" (HTTP-GET) The data source for the [Reflexionsklasse] select control should be loaded from the relative URL: "/ReflexionsklasseService/reflexionsklasse" (HTTP-GET) The data source for the [Verkehrszeichen] select control should be loaded from the relative URL: "/VerkehrszeichenService/verkehrszeichen" (HTTP-GET) The data source for the [MarkierungsMaterial] select control should be loaded from the relative URL: "/VerkehrszeichenService/markierungsmaterial" (HTTP-GET) An existing Markierung entity should be loaded from the relative URL: "/VerkehrszeichenService/markierung/{id}" (HTTP-GET) If a new Markierung entity has been created, the new entity should be posted to the relative URL: "/VerkehrszeichenService/markierung" (HTTP-POST) If an existing Markierung entity has been updated, the modified entity should be sent to the relative URL: "/VerkehrszeichenService/markierung/{id}" (HTTP-PUT) If an existing Markierung entity has to be deleted, the following relative URL should be called: "/VerkehrszeichenService/markierung/{id}" (HTTP-DELETE) 3. The MarkierungsMaterialView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing MarkierungsMaterial entity should be loaded from the relative URL: "/VerkehrszeichenService/markierungsmaterial/{id}" (HTTP-GET) If a new MarkierungsMaterial entity has been created, the new entity should be posted to the relative URL: "/VerkehrszeichenService/markierungsmaterial" (HTTP-POST) If an existing MarkierungsMaterial entity has been updated, the modified entity should be sent to the relative URL: "/VerkehrszeichenService/markierungsmaterial/{id}" (HTTP-PUT) If an existing MarkierungsMaterial entity has to be deleted, the following relative URL should be called: "/VerkehrszeichenService/markierungsmaterial/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Markierung columns: - column: Reflexionsklasse - column: MarkierungsVerkehrsklasse - column: Beschreibung - column: Struktur - column: Verkehrszeichen - column: Farbe - column: MarkierungsMaterial The table should have the title "Markierungs" und the data must be loaded from the server with the following relative URL: "/VerkehrszeichenService/markierung/markierungsmaterial/{id}" 4. The VerkehrszeichenView must contain the following fields: - name: Behoerde type: Behoerde - name: Beschreibung type: STRING - name: Code type: STRING - name: Farbschema type: Farbschema - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: IstAmtlich type: BOOL - name: IstMarkierung type: BOOL - name: IstVariabel type: BOOL - name: Kurzbezeichnung type: STRING - name: Langbezeichnung type: STRING - name: Piktogramm type: STRING - name: Rechtsgrundlage type: Rechtsgrundlage - name: VerkehrszeichenSystem type: VerkehrszeichenSystem - name: ZeichenForm type: ZeichenForm - name: ZeichenFunktion type: ZeichenFunktion - name: ZeichenKategorie type: ZeichenKategorie The data source for the [Farbschema] select control should be loaded from the relative URL: "/VerkehrszeichenService/farbschema" (HTTP-GET) The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/LandService/rechtsgrundlage" (HTTP-GET) The data source for the [ZeichenFunktion] select control should be loaded from the relative URL: "/ZeichenKategorieService/zeichenfunktion" (HTTP-GET) The data source for the [ZeichenForm] select control should be loaded from the relative URL: "/InternationaleKonventionService/zeichenform" (HTTP-GET) The data source for the [ZeichenKategorie] select control should be loaded from the relative URL: "/ZeichenKategorieService/zeichenkategorie" (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 [VerkehrszeichenSystem] select control should be loaded from the relative URL: "/LandService/verkehrszeichensystem" (HTTP-GET) An existing Verkehrszeichen entity should be loaded from the relative URL: "/VerkehrszeichenService/verkehrszeichen/{id}" (HTTP-GET) If a new Verkehrszeichen entity has been created, the new entity should be posted to the relative URL: "/VerkehrszeichenService/verkehrszeichen" (HTTP-POST) If an existing Verkehrszeichen entity has been updated, the modified entity should be sent to the relative URL: "/VerkehrszeichenService/verkehrszeichen/{id}" (HTTP-PUT) If an existing Verkehrszeichen entity has to be deleted, the following relative URL should be called: "/VerkehrszeichenService/verkehrszeichen/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TechnischeSpezifikation columns: - column: Reflexionsklasse - column: Groessenklasse - column: Beleuchtungsart - column: Hinweise - column: Verkehrszeichen The table should have the title "TechnischeSpezifikations" und the data must be loaded from the server with the following relative URL: "/ReflexionsklasseService/technischespezifikation/verkehrszeichen/{id}" Add a HTML table to the view with the following KonventionsZuordnung columns: - column: Hinweise - column: KonventionsZeichen - column: Verkehrszeichen The table should have the title "KonventionsZuordnungs" und the data must be loaded from the server with the following relative URL: "/ZeichenKategorieService/konventionszuordnung/verkehrszeichen/{id}" Add a HTML table to the view with the following Markierung columns: - column: Reflexionsklasse - column: MarkierungsVerkehrsklasse - column: Beschreibung - column: Struktur - column: Verkehrszeichen - column: Farbe - column: MarkierungsMaterial The table should have the title "Markierungs" und the data must be loaded from the server with the following relative URL: "/VerkehrszeichenService/markierung/verkehrszeichen/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum