Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
WasserversorgerApp
Please create a React-JS application for the WasserversorgerModule. The application has to offer the following views for the user interface: 1. AufbereitungNetzVerbindungView 2. PumpwerkView 3. SpeicherbehaelterView 4. VersorgerGemeindeAbdeckungView 5. WasseraufbereitungsanlageView 6. WasserversorgerView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 6 views are defined below. 1. The AufbereitungNetzVerbindungView must contain the following fields: - name: Hinweise type: STRING - name: MaxDurchflussM3ProTag type: STRING - name: Verteilnetz type: Verteilnetz - name: Wasseraufbereitungsanlage type: Wasseraufbereitungsanlage The data source for the [Verteilnetz] select control should be loaded from the relative URL: "/VerteilnetzService/verteilnetz" (HTTP-GET) The data source for the [Wasseraufbereitungsanlage] select control should be loaded from the relative URL: "/WasserversorgerService/wasseraufbereitungsanlage" (HTTP-GET) An existing AufbereitungNetzVerbindung entity should be loaded from the relative URL: "/WasserversorgerService/aufbereitungnetzverbindung/{id}" (HTTP-GET) If a new AufbereitungNetzVerbindung entity has been created, the new entity should be posted to the relative URL: "/WasserversorgerService/aufbereitungnetzverbindung" (HTTP-POST) If an existing AufbereitungNetzVerbindung entity has been updated, the modified entity should be sent to the relative URL: "/WasserversorgerService/aufbereitungnetzverbindung/{id}" (HTTP-PUT) If an existing AufbereitungNetzVerbindung entity has to be deleted, the following relative URL should be called: "/WasserversorgerService/aufbereitungnetzverbindung/{id}" (HTTP-DELETE) 2. The PumpwerkView must contain the following fields: - name: Breitengrad type: STRING - name: Hinweise type: STRING - name: Inbetriebnahmedatum type: DATE - name: KapazitaetM3ProStunde type: STRING - name: Laengengrad type: STRING - name: Pumpwerksname type: STRING - name: Pumpwerkstyp type: STRING - name: Verteilnetz type: Verteilnetz - name: Wasserversorger type: Wasserversorger The data source for the [Verteilnetz] select control should be loaded from the relative URL: "/VerteilnetzService/verteilnetz" (HTTP-GET) The data source for the [Wasserversorger] select control should be loaded from the relative URL: "/WasserversorgerService/wasserversorger" (HTTP-GET) An existing Pumpwerk entity should be loaded from the relative URL: "/WasserversorgerService/pumpwerk/{id}" (HTTP-GET) If a new Pumpwerk entity has been created, the new entity should be posted to the relative URL: "/WasserversorgerService/pumpwerk" (HTTP-POST) If an existing Pumpwerk entity has been updated, the modified entity should be sent to the relative URL: "/WasserversorgerService/pumpwerk/{id}" (HTTP-PUT) If an existing Pumpwerk entity has to be deleted, the following relative URL should be called: "/WasserversorgerService/pumpwerk/{id}" (HTTP-DELETE) 3. The SpeicherbehaelterView must contain the following fields: - name: Breitengrad type: STRING - name: Hinweise type: STRING - name: Inbetriebnahmedatum type: DATE - name: Laengengrad type: STRING - name: Speichername type: STRING - name: Speichertyp type: STRING - name: Verteilnetz type: Verteilnetz - name: VolumenM3 type: STRING - name: WasserstandMaxM type: STRING - name: WasserstandMinM type: STRING - name: Wasserversorger type: Wasserversorger The data source for the [Verteilnetz] select control should be loaded from the relative URL: "/VerteilnetzService/verteilnetz" (HTTP-GET) The data source for the [Wasserversorger] select control should be loaded from the relative URL: "/WasserversorgerService/wasserversorger" (HTTP-GET) An existing Speicherbehaelter entity should be loaded from the relative URL: "/WasserversorgerService/speicherbehaelter/{id}" (HTTP-GET) If a new Speicherbehaelter entity has been created, the new entity should be posted to the relative URL: "/WasserversorgerService/speicherbehaelter" (HTTP-POST) If an existing Speicherbehaelter entity has been updated, the modified entity should be sent to the relative URL: "/WasserversorgerService/speicherbehaelter/{id}" (HTTP-PUT) If an existing Speicherbehaelter entity has to be deleted, the following relative URL should be called: "/WasserversorgerService/speicherbehaelter/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Wasserqualitaetsmessstelle columns: - column: Hinweise - column: Wasserquelle - column: Laengengrad - column: Speicherbehaelter - column: Wasserversorger - column: Standortbeschreibung - column: Messstellenname - column: Breitengrad - column: Verteilnetz The table should have the title "Wasserqualitaetsmessstelles" und the data must be loaded from the server with the following relative URL: "/WasserqualitaetsprobeService/wasserqualitaetsmessstelle/speicherbehaelter/{id}" 4. The VersorgerGemeindeAbdeckungView must contain the following fields: - name: Beginn type: DATE - name: Beschreibung type: STRING - name: Ende type: DATE - name: Gemeinde type: Gemeinde - name: Wasserversorger type: Wasserversorger The data source for the [Wasserversorger] select control should be loaded from the relative URL: "/WasserversorgerService/wasserversorger" (HTTP-GET) The data source for the [Gemeinde] select control should be loaded from the relative URL: "/VerteilnetzService/gemeinde" (HTTP-GET) An existing VersorgerGemeindeAbdeckung entity should be loaded from the relative URL: "/WasserversorgerService/versorgergemeindeabdeckung/{id}" (HTTP-GET) If a new VersorgerGemeindeAbdeckung entity has been created, the new entity should be posted to the relative URL: "/WasserversorgerService/versorgergemeindeabdeckung" (HTTP-POST) If an existing VersorgerGemeindeAbdeckung entity has been updated, the modified entity should be sent to the relative URL: "/WasserversorgerService/versorgergemeindeabdeckung/{id}" (HTTP-PUT) If an existing VersorgerGemeindeAbdeckung entity has to be deleted, the following relative URL should be called: "/WasserversorgerService/versorgergemeindeabdeckung/{id}" (HTTP-DELETE) 5. The WasseraufbereitungsanlageView must contain the following fields: - name: Anlagenname type: STRING - name: Aufbereitungstyp type: STRING - name: Gemeinde type: Gemeinde - name: Hinweise type: STRING - name: Inbetriebnahmedatum type: DATE - name: KapazitaetM3ProTag type: STRING - name: Wasserversorger type: Wasserversorger The data source for the [Wasserversorger] select control should be loaded from the relative URL: "/WasserversorgerService/wasserversorger" (HTTP-GET) The data source for the [Gemeinde] select control should be loaded from the relative URL: "/VerteilnetzService/gemeinde" (HTTP-GET) An existing Wasseraufbereitungsanlage entity should be loaded from the relative URL: "/WasserversorgerService/wasseraufbereitungsanlage/{id}" (HTTP-GET) If a new Wasseraufbereitungsanlage entity has been created, the new entity should be posted to the relative URL: "/WasserversorgerService/wasseraufbereitungsanlage" (HTTP-POST) If an existing Wasseraufbereitungsanlage entity has been updated, the modified entity should be sent to the relative URL: "/WasserversorgerService/wasseraufbereitungsanlage/{id}" (HTTP-PUT) If an existing Wasseraufbereitungsanlage entity has to be deleted, the following relative URL should be called: "/WasserversorgerService/wasseraufbereitungsanlage/{id}" (HTTP-DELETE) Add a HTML table to the view with the following QuelleAufbereitungVerbindung columns: - column: Wasserquelle - column: Hinweise - column: MaxDurchflussM3ProTag - column: Wasseraufbereitungsanlage The table should have the title "QuelleAufbereitungVerbindungs" und the data must be loaded from the server with the following relative URL: "/WasserquelleService/quelleaufbereitungverbindung/wasseraufbereitungsanlage/{id}" Add a HTML table to the view with the following AufbereitungNetzVerbindung columns: - column: Wasseraufbereitungsanlage - column: Verteilnetz - column: MaxDurchflussM3ProTag - column: Hinweise The table should have the title "AufbereitungNetzVerbindungs" und the data must be loaded from the server with the following relative URL: "/WasserversorgerService/aufbereitungnetzverbindung/wasseraufbereitungsanlage/{id}" 6. The WasserversorgerView must contain the following fields: - name: Betriebsbeginn type: DATE - name: Hinweise type: STRING - name: IstOeffentlich type: BOOL - name: IstPrivatGefuehrt type: BOOL - name: Organisation type: Organisation - name: Versorgername type: STRING - name: VersorgungsgebietBeschreibung type: STRING The data source for the [Organisation] select control should be loaded from the relative URL: "/VerteilnetzService/organisation" (HTTP-GET) An existing Wasserversorger entity should be loaded from the relative URL: "/WasserversorgerService/wasserversorger/{id}" (HTTP-GET) If a new Wasserversorger entity has been created, the new entity should be posted to the relative URL: "/WasserversorgerService/wasserversorger" (HTTP-POST) If an existing Wasserversorger entity has been updated, the modified entity should be sent to the relative URL: "/WasserversorgerService/wasserversorger/{id}" (HTTP-PUT) If an existing Wasserversorger entity has to be deleted, the following relative URL should be called: "/WasserversorgerService/wasserversorger/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Wasserquelle columns: - column: Wasserversorger - column: Hinweise - column: Breitengrad - column: Laengengrad - column: Quellenname - column: MaxFoerderungM3ProTag - column: RohwasserQualitaetBeschreibung - column: Gemeinde - column: Quellentyp The table should have the title "Wasserquelles" und the data must be loaded from the server with the following relative URL: "/WasserquelleService/wasserquelle/wasserversorger/{id}" Add a HTML table to the view with the following Speicherbehaelter columns: - column: Laengengrad - column: Hinweise - column: Verteilnetz - column: WasserstandMaxM - column: Speichername - column: Speichertyp - column: Breitengrad - column: VolumenM3 - column: Wasserversorger - column: WasserstandMinM - column: Inbetriebnahmedatum The table should have the title "Speicherbehaelters" und the data must be loaded from the server with the following relative URL: "/WasserversorgerService/speicherbehaelter/wasserversorger/{id}" Add a HTML table to the view with the following Tarif columns: - column: Hinweise - column: GueltigBis - column: Verbraucherkategorie - column: GrundpreisProMonat - column: Wasserversorger - column: ArbeitspreisProM3 - column: GueltigAb - column: Tarifname The table should have the title "Tarifs" und the data must be loaded from the server with the following relative URL: "/VerbraucherkategorieService/tarif/wasserversorger/{id}" Add a HTML table to the view with the following Verteilnetz columns: - column: Hinweise - column: Netzname - column: Netztyp - column: DruckMinBar - column: Wasserversorger - column: DruckMaxBar The table should have the title "Verteilnetzs" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/verteilnetz/wasserversorger/{id}" Add a HTML table to the view with the following VersorgerGemeindeAbdeckung columns: - column: Beschreibung - column: Ende - column: Beginn - column: Wasserversorger - column: Gemeinde The table should have the title "VersorgerGemeindeAbdeckungs" und the data must be loaded from the server with the following relative URL: "/WasserversorgerService/versorgergemeindeabdeckung/wasserversorger/{id}" Add a HTML table to the view with the following Wasseraufbereitungsanlage columns: - column: Inbetriebnahmedatum - column: Gemeinde - column: Wasserversorger - column: Hinweise - column: Aufbereitungstyp - column: Anlagenname - column: KapazitaetM3ProTag The table should have the title "Wasseraufbereitungsanlages" und the data must be loaded from the server with the following relative URL: "/WasserversorgerService/wasseraufbereitungsanlage/wasserversorger/{id}" Add a HTML table to the view with the following Pumpwerk columns: - column: Wasserversorger - column: Pumpwerksname - column: Breitengrad - column: Hinweise - column: Laengengrad - column: Pumpwerkstyp - column: KapazitaetM3ProStunde - column: Verteilnetz - column: Inbetriebnahmedatum The table should have the title "Pumpwerks" und the data must be loaded from the server with the following relative URL: "/WasserversorgerService/pumpwerk/wasserversorger/{id}" Add a HTML table to the view with the following Wasserqualitaetsmessstelle columns: - column: Hinweise - column: Wasserquelle - column: Laengengrad - column: Speicherbehaelter - column: Wasserversorger - column: Standortbeschreibung - column: Messstellenname - column: Breitengrad - column: Verteilnetz The table should have the title "Wasserqualitaetsmessstelles" und the data must be loaded from the server with the following relative URL: "/WasserqualitaetsprobeService/wasserqualitaetsmessstelle/wasserversorger/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum