Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RohwasserqualitaetsmessungApp
Please create a React-JS application for the RohwasserqualitaetsmessungModule. The application has to offer the following views for the user interface: 1. RohwasserqualitaetsmessungView 2. RohwasserqualitaetswertView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The RohwasserqualitaetsmessungView must contain the following fields: - name: Kommentar type: STRING - name: Messzeitpunkt type: DATE - name: Rohwasserfassung type: Rohwasserfassung The data source for the [Rohwasserfassung] select control should be loaded from the relative URL: "/RohwasserfassungService/rohwasserfassung" (HTTP-GET) An existing Rohwasserqualitaetsmessung entity should be loaded from the relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetsmessung/{id}" (HTTP-GET) If a new Rohwasserqualitaetsmessung entity has been created, the new entity should be posted to the relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetsmessung" (HTTP-POST) If an existing Rohwasserqualitaetsmessung entity has been updated, the modified entity should be sent to the relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetsmessung/{id}" (HTTP-PUT) If an existing Rohwasserqualitaetsmessung entity has to be deleted, the following relative URL should be called: "/RohwasserqualitaetsmessungService/rohwasserqualitaetsmessung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Rohwasserqualitaetswert columns: - column: Wert - column: Wasserparameter - column: Kommentar - column: Rohwasserqualitaetsmessung The table should have the title "Rohwasserqualitaetswerts" und the data must be loaded from the server with the following relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetswert/rohwasserqualitaetsmessung/{id}" 2. The RohwasserqualitaetswertView must contain the following fields: - name: Kommentar type: STRING - name: Rohwasserqualitaetsmessung type: Rohwasserqualitaetsmessung - name: Wasserparameter type: Wasserparameter - name: Wert type: DOUBLE The data source for the [Wasserparameter] select control should be loaded from the relative URL: "/WasserparameterService/wasserparameter" (HTTP-GET) The data source for the [Rohwasserqualitaetsmessung] select control should be loaded from the relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetsmessung" (HTTP-GET) An existing Rohwasserqualitaetswert entity should be loaded from the relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetswert/{id}" (HTTP-GET) If a new Rohwasserqualitaetswert entity has been created, the new entity should be posted to the relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetswert" (HTTP-POST) If an existing Rohwasserqualitaetswert entity has been updated, the modified entity should be sent to the relative URL: "/RohwasserqualitaetsmessungService/rohwasserqualitaetswert/{id}" (HTTP-PUT) If an existing Rohwasserqualitaetswert entity has to be deleted, the following relative URL should be called: "/RohwasserqualitaetsmessungService/rohwasserqualitaetswert/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum