Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
StandardApp
Please create a React-JS application for the StandardModule. The application has to offer the following views for the user interface: 1. HistorischeStatistikView 2. NormAnwendungView 3. StandardView 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 HistorischeStatistikView must contain the following fields: - name: AnzahlBrunnen type: LONG - name: AnzahlFeuermelder type: LONG - name: AnzahlHaltestellen type: LONG - name: AnzahlKioske type: LONG - name: AnzahlLichtmasten type: LONG - name: AnzahlOeffentlicheUhren type: LONG - name: AnzahlSandkaesten type: LONG - name: AnzahlSchalthaeuser type: LONG - name: AnzahlToiletten type: LONG - name: AnzahlTramMasten type: LONG - name: AnzahlWerbesaeulen type: LONG - name: Gemeinde type: Gemeinde - name: Jahr type: LONG - name: Notizen type: STRING The data source for the [Gemeinde] select control should be loaded from the relative URL: "/GemeindeService/gemeinde" (HTTP-GET) An existing HistorischeStatistik entity should be loaded from the relative URL: "/StandardService/historischestatistik/{id}" (HTTP-GET) If a new HistorischeStatistik entity has been created, the new entity should be posted to the relative URL: "/StandardService/historischestatistik" (HTTP-POST) If an existing HistorischeStatistik entity has been updated, the modified entity should be sent to the relative URL: "/StandardService/historischestatistik/{id}" (HTTP-PUT) If an existing HistorischeStatistik entity has to be deleted, the following relative URL should be called: "/StandardService/historischestatistik/{id}" (HTTP-DELETE) 2. The NormAnwendungView must contain the following fields: - name: Anwendungstyp type: STRING - name: Notizen type: STRING - name: Stadtmoebel type: Stadtmoebel - name: Standard type: Standard The data source for the [Stadtmoebel] select control should be loaded from the relative URL: "/StadtmoebelService/stadtmoebel" (HTTP-GET) The data source for the [Standard] select control should be loaded from the relative URL: "/StandardService/standard" (HTTP-GET) An existing NormAnwendung entity should be loaded from the relative URL: "/StandardService/normanwendung/{id}" (HTTP-GET) If a new NormAnwendung entity has been created, the new entity should be posted to the relative URL: "/StandardService/normanwendung" (HTTP-POST) If an existing NormAnwendung entity has been updated, the modified entity should be sent to the relative URL: "/StandardService/normanwendung/{id}" (HTTP-PUT) If an existing NormAnwendung entity has to be deleted, the following relative URL should be called: "/StandardService/normanwendung/{id}" (HTTP-DELETE) 3. The StandardView must contain the following fields: - name: Anwendungsbereich type: STRING - name: Code type: STRING - name: GueltigAb type: DATE - name: Herausgeber type: STRING - name: Notizen type: STRING - name: Titel type: STRING An existing Standard entity should be loaded from the relative URL: "/StandardService/standard/{id}" (HTTP-GET) If a new Standard entity has been created, the new entity should be posted to the relative URL: "/StandardService/standard" (HTTP-POST) If an existing Standard entity has been updated, the modified entity should be sent to the relative URL: "/StandardService/standard/{id}" (HTTP-PUT) If an existing Standard entity has to be deleted, the following relative URL should be called: "/StandardService/standard/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Stadtmoebel columns: - column: Gestaltungsprojekt - column: Gestalter - column: Standort - column: Status - column: Moebeltyp - column: HatSicherheitsfunktion - column: Gemeinde - column: Installationsjahr - column: IstUnbeweglich - column: Standard - column: HatSmartfunktionen - column: Moebelgruppe - column: Name - column: HatWerbung - column: Beschreibung The table should have the title "Stadtmoebels" und the data must be loaded from the server with the following relative URL: "/StadtmoebelService/stadtmoebel/standard/{id}" Add a HTML table to the view with the following NormAnwendung columns: - column: Anwendungstyp - column: Notizen - column: Standard - column: Stadtmoebel The table should have the title "NormAnwendungs" und the data must be loaded from the server with the following relative URL: "/StandardService/normanwendung/standard/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum