Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VerteilnetzApp
Please create a React-JS application for the VerteilnetzModule. The application has to offer the following views for the user interface: 1. BundeslandRegionView 2. GemeindeView 3. HydrantView 4. OrganisationView 5. VerteilnetzView 6. WasseranschlussView 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 BundeslandRegionView must contain the following fields: - name: Hinweise type: STRING - name: Land type: Land - name: Regionsname type: STRING - name: Regionstyp type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing BundeslandRegion entity should be loaded from the relative URL: "/VerteilnetzService/bundeslandregion/{id}" (HTTP-GET) If a new BundeslandRegion entity has been created, the new entity should be posted to the relative URL: "/VerteilnetzService/bundeslandregion" (HTTP-POST) If an existing BundeslandRegion entity has been updated, the modified entity should be sent to the relative URL: "/VerteilnetzService/bundeslandregion/{id}" (HTTP-PUT) If an existing BundeslandRegion entity has to be deleted, the following relative URL should be called: "/VerteilnetzService/bundeslandregion/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gemeinde columns: - column: FlaecheKm2 - column: BundeslandRegion - column: Hinweise - column: Einwohnerzahl - column: Gemeindename The table should have the title "Gemeindes" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/gemeinde/bundeslandregion/{id}" 2. The GemeindeView must contain the following fields: - name: BundeslandRegion type: BundeslandRegion - name: Einwohnerzahl type: LONG - name: FlaecheKm2 type: STRING - name: Gemeindename type: STRING - name: Hinweise type: STRING The data source for the [BundeslandRegion] select control should be loaded from the relative URL: "/VerteilnetzService/bundeslandregion" (HTTP-GET) An existing Gemeinde entity should be loaded from the relative URL: "/VerteilnetzService/gemeinde/{id}" (HTTP-GET) If a new Gemeinde entity has been created, the new entity should be posted to the relative URL: "/VerteilnetzService/gemeinde" (HTTP-POST) If an existing Gemeinde entity has been updated, the modified entity should be sent to the relative URL: "/VerteilnetzService/gemeinde/{id}" (HTTP-PUT) If an existing Gemeinde entity has to be deleted, the following relative URL should be called: "/VerteilnetzService/gemeinde/{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/gemeinde/{id}" Add a HTML table to the view with the following Wasseranschluss columns: - column: DurchmesserMm - column: Anschlussbeginn - column: Anschlussende - column: Hinweise - column: Anschlusskennung - column: Verbraucherkategorie - column: Verteilnetz - column: Strasse - column: Postleitzahl - column: Zaehlernummer - column: Gemeinde The table should have the title "Wasseranschlusss" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/wasseranschluss/gemeinde/{id}" Add a HTML table to the view with the following Organisation columns: - column: WebseiteUrl - column: Rechtsform - column: Gruendungsdatum - column: Land - column: Organisationstyp - column: Hinweise - column: SitzGemeinde - column: Organisationsname The table should have the title "Organisations" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/organisation/sitzgemeinde/{id}" Add a HTML table to the view with the following Hydrant columns: - column: Verteilnetz - column: Hydrantentyp - column: MaxDurchflussLProSekunde - column: Gemeinde - column: DurchmesserMm - column: Hinweise - column: HydrantKennung - column: Laengengrad - column: Installationsjahr - column: Breitengrad The table should have the title "Hydrants" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/hydrant/gemeinde/{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/gemeinde/{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/gemeinde/{id}" 3. The HydrantView must contain the following fields: - name: Breitengrad type: STRING - name: DurchmesserMm type: LONG - name: Gemeinde type: Gemeinde - name: Hinweise type: STRING - name: Hydrantentyp type: STRING - name: HydrantKennung type: STRING - name: Installationsjahr type: LONG - name: Laengengrad type: STRING - name: MaxDurchflussLProSekunde type: STRING - name: Verteilnetz type: Verteilnetz The data source for the [Verteilnetz] select control should be loaded from the relative URL: "/VerteilnetzService/verteilnetz" (HTTP-GET) The data source for the [Gemeinde] select control should be loaded from the relative URL: "/VerteilnetzService/gemeinde" (HTTP-GET) An existing Hydrant entity should be loaded from the relative URL: "/VerteilnetzService/hydrant/{id}" (HTTP-GET) If a new Hydrant entity has been created, the new entity should be posted to the relative URL: "/VerteilnetzService/hydrant" (HTTP-POST) If an existing Hydrant entity has been updated, the modified entity should be sent to the relative URL: "/VerteilnetzService/hydrant/{id}" (HTTP-PUT) If an existing Hydrant entity has to be deleted, the following relative URL should be called: "/VerteilnetzService/hydrant/{id}" (HTTP-DELETE) 4. The OrganisationView must contain the following fields: - name: Gruendungsdatum type: DATE - name: Hinweise type: STRING - name: Land type: Land - name: Organisationsname type: STRING - name: Organisationstyp type: STRING - name: Rechtsform type: STRING - name: SitzGemeinde type: Gemeinde - name: WebseiteUrl type: STRING The data source for the [SitzGemeinde] select control should be loaded from the relative URL: "/VerteilnetzService/gemeinde" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Organisation entity should be loaded from the relative URL: "/VerteilnetzService/organisation/{id}" (HTTP-GET) If a new Organisation entity has been created, the new entity should be posted to the relative URL: "/VerteilnetzService/organisation" (HTTP-POST) If an existing Organisation entity has been updated, the modified entity should be sent to the relative URL: "/VerteilnetzService/organisation/{id}" (HTTP-PUT) If an existing Organisation entity has to be deleted, the following relative URL should be called: "/VerteilnetzService/organisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verbandsmitgliedschaft columns: - column: Wasserverband - column: MitgliedschaftEnde - column: Organisation - column: MitgliedschaftBeginn The table should have the title "Verbandsmitgliedschafts" und the data must be loaded from the server with the following relative URL: "/WasserverbandService/verbandsmitgliedschaft/organisation/{id}" Add a HTML table to the view with the following Wasserversorger columns: - column: VersorgungsgebietBeschreibung - column: Hinweise - column: Versorgername - column: IstPrivatGefuehrt - column: IstOeffentlich - column: Organisation - column: Betriebsbeginn The table should have the title "Wasserversorgers" und the data must be loaded from the server with the following relative URL: "/WasserversorgerService/wasserversorger/organisation/{id}" 5. The VerteilnetzView must contain the following fields: - name: DruckMaxBar type: STRING - name: DruckMinBar type: STRING - name: Hinweise type: STRING - name: Netzname type: STRING - name: Netztyp 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) An existing Verteilnetz entity should be loaded from the relative URL: "/VerteilnetzService/verteilnetz/{id}" (HTTP-GET) If a new Verteilnetz entity has been created, the new entity should be posted to the relative URL: "/VerteilnetzService/verteilnetz" (HTTP-POST) If an existing Verteilnetz entity has been updated, the modified entity should be sent to the relative URL: "/VerteilnetzService/verteilnetz/{id}" (HTTP-PUT) If an existing Verteilnetz entity has to be deleted, the following relative URL should be called: "/VerteilnetzService/verteilnetz/{id}" (HTTP-DELETE) 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/verteilnetz/{id}" Add a HTML table to the view with the following Wasseranschluss columns: - column: DurchmesserMm - column: Anschlussbeginn - column: Anschlussende - column: Hinweise - column: Anschlusskennung - column: Verbraucherkategorie - column: Verteilnetz - column: Strasse - column: Postleitzahl - column: Zaehlernummer - column: Gemeinde The table should have the title "Wasseranschlusss" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/wasseranschluss/verteilnetz/{id}" Add a HTML table to the view with the following Hydrant columns: - column: Verteilnetz - column: Hydrantentyp - column: MaxDurchflussLProSekunde - column: Gemeinde - column: DurchmesserMm - column: Hinweise - column: HydrantKennung - column: Laengengrad - column: Installationsjahr - column: Breitengrad The table should have the title "Hydrants" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/hydrant/verteilnetz/{id}" Add a HTML table to the view with the following Rohrleitung columns: - column: Material - column: BetriebsdruckBar - column: DurchmesserMm - column: Verteilnetz - column: Installationsjahr - column: LaengeKm - column: Hinweise - column: Leitungsname The table should have the title "Rohrleitungs" und the data must be loaded from the server with the following relative URL: "/VerbraucherkategorieService/rohrleitung/verteilnetz/{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/verteilnetz/{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/verteilnetz/{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/verteilnetz/{id}" 6. The WasseranschlussView must contain the following fields: - name: Anschlussbeginn type: DATE - name: Anschlussende type: DATE - name: Anschlusskennung type: STRING - name: DurchmesserMm type: LONG - name: Gemeinde type: Gemeinde - name: Hinweise type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: Verbraucherkategorie type: Verbraucherkategorie - name: Verteilnetz type: Verteilnetz - name: Zaehlernummer type: STRING The data source for the [Verbraucherkategorie] select control should be loaded from the relative URL: "/VerbraucherkategorieService/verbraucherkategorie" (HTTP-GET) The data source for the [Verteilnetz] select control should be loaded from the relative URL: "/VerteilnetzService/verteilnetz" (HTTP-GET) The data source for the [Gemeinde] select control should be loaded from the relative URL: "/VerteilnetzService/gemeinde" (HTTP-GET) An existing Wasseranschluss entity should be loaded from the relative URL: "/VerteilnetzService/wasseranschluss/{id}" (HTTP-GET) If a new Wasseranschluss entity has been created, the new entity should be posted to the relative URL: "/VerteilnetzService/wasseranschluss" (HTTP-POST) If an existing Wasseranschluss entity has been updated, the modified entity should be sent to the relative URL: "/VerteilnetzService/wasseranschluss/{id}" (HTTP-PUT) If an existing Wasseranschluss entity has to be deleted, the following relative URL should be called: "/VerteilnetzService/wasseranschluss/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum