Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KalkVerhaltenApp
Please create a React-JS application for the KalkVerhaltenModule. The application has to offer the following views for the user interface: 1. GeraetInstallationsArtView 2. InstallationsArtView 3. KalkVerhaltenView 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 GeraetInstallationsArtView must contain the following fields: - name: InstallationsArt type: InstallationsArt - name: SpeicherGeraet type: SpeicherGeraet The data source for the [InstallationsArt] select control should be loaded from the relative URL: "/KalkVerhaltenService/installationsart" (HTTP-GET) The data source for the [SpeicherGeraet] select control should be loaded from the relative URL: "/SpeicherGeraetService/speichergeraet" (HTTP-GET) An existing GeraetInstallationsArt entity should be loaded from the relative URL: "/KalkVerhaltenService/geraetinstallationsart/{id}" (HTTP-GET) If a new GeraetInstallationsArt entity has been created, the new entity should be posted to the relative URL: "/KalkVerhaltenService/geraetinstallationsart" (HTTP-POST) If an existing GeraetInstallationsArt entity has been updated, the modified entity should be sent to the relative URL: "/KalkVerhaltenService/geraetinstallationsart/{id}" (HTTP-PUT) If an existing GeraetInstallationsArt entity has to be deleted, the following relative URL should be called: "/KalkVerhaltenService/geraetinstallationsart/{id}" (HTTP-DELETE) 2. The InstallationsArtView must contain the following fields: - name: Name type: STRING An existing InstallationsArt entity should be loaded from the relative URL: "/KalkVerhaltenService/installationsart/{id}" (HTTP-GET) If a new InstallationsArt entity has been created, the new entity should be posted to the relative URL: "/KalkVerhaltenService/installationsart" (HTTP-POST) If an existing InstallationsArt entity has been updated, the modified entity should be sent to the relative URL: "/KalkVerhaltenService/installationsart/{id}" (HTTP-PUT) If an existing InstallationsArt entity has to be deleted, the following relative URL should be called: "/KalkVerhaltenService/installationsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GeraetInstallationsArt columns: - column: SpeicherGeraet - column: InstallationsArt The table should have the title "GeraetInstallationsArts" und the data must be loaded from the server with the following relative URL: "/KalkVerhaltenService/geraetinstallationsart/installationsart/{id}" 3. The KalkVerhaltenView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing KalkVerhalten entity should be loaded from the relative URL: "/KalkVerhaltenService/kalkverhalten/{id}" (HTTP-GET) If a new KalkVerhalten entity has been created, the new entity should be posted to the relative URL: "/KalkVerhaltenService/kalkverhalten" (HTTP-POST) If an existing KalkVerhalten entity has been updated, the modified entity should be sent to the relative URL: "/KalkVerhaltenService/kalkverhalten/{id}" (HTTP-PUT) If an existing KalkVerhalten entity has to be deleted, the following relative URL should be called: "/KalkVerhaltenService/kalkverhalten/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SpeicherGeraet columns: - column: IstTrinkwassergeeignet - column: MinBetriebstemperatur - column: Name - column: SpeicherKategorie - column: HatHeizstab - column: KalkVerhalten - column: LegionellenRisikoProfil - column: SchichtungsDesign - column: IstSolarBereit - column: Bauart - column: IstNurPuffer - column: IstDirektentnahme - column: HatWaermetauscher - column: VolumenLiter - column: MaxBetriebstemperatur - column: Beschreibung The table should have the title "SpeicherGeraets" und the data must be loaded from the server with the following relative URL: "/SpeicherGeraetService/speichergeraet/kalkverhalten/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum