Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GeraetetypApp
Please create a React-JS application for the GeraetetypModule. The application has to offer the following views for the user interface: 1. GeraetView 2. GeraetetypView 3. ProzessGeraetView 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 GeraetView must contain the following fields: - name: BemessungsleistungM3ProStunde type: DOUBLE - name: Beschreibung type: STRING - name: Geraetetyp type: Geraetetyp - name: Hersteller type: STRING - name: Installationsdatum type: DATE - name: Modell type: STRING - name: Name type: STRING The data source for the [Geraetetyp] select control should be loaded from the relative URL: "/GeraetetypService/geraetetyp" (HTTP-GET) An existing Geraet entity should be loaded from the relative URL: "/GeraetetypService/geraet/{id}" (HTTP-GET) If a new Geraet entity has been created, the new entity should be posted to the relative URL: "/GeraetetypService/geraet" (HTTP-POST) If an existing Geraet entity has been updated, the modified entity should be sent to the relative URL: "/GeraetetypService/geraet/{id}" (HTTP-PUT) If an existing Geraet entity has to be deleted, the following relative URL should be called: "/GeraetetypService/geraet/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ProzessGeraet columns: - column: Geraet - column: InBetriebAb - column: Rolle - column: InBetriebBis - column: Aufbereitungsprozess The table should have the title "ProzessGeraets" und the data must be loaded from the server with the following relative URL: "/GeraetetypService/prozessgeraet/geraet/{id}" 2. The GeraetetypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Geraetetyp entity should be loaded from the relative URL: "/GeraetetypService/geraetetyp/{id}" (HTTP-GET) If a new Geraetetyp entity has been created, the new entity should be posted to the relative URL: "/GeraetetypService/geraetetyp" (HTTP-POST) If an existing Geraetetyp entity has been updated, the modified entity should be sent to the relative URL: "/GeraetetypService/geraetetyp/{id}" (HTTP-PUT) If an existing Geraetetyp entity has to be deleted, the following relative URL should be called: "/GeraetetypService/geraetetyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Geraet columns: - column: Geraetetyp - column: Beschreibung - column: Hersteller - column: BemessungsleistungM3ProStunde - column: Installationsdatum - column: Name - column: Modell The table should have the title "Geraets" und the data must be loaded from the server with the following relative URL: "/GeraetetypService/geraet/geraetetyp/{id}" 3. The ProzessGeraetView must contain the following fields: - name: Aufbereitungsprozess type: Aufbereitungsprozess - name: Geraet type: Geraet - name: InBetriebAb type: DATE - name: InBetriebBis type: DATE - name: Rolle type: STRING The data source for the [Geraet] select control should be loaded from the relative URL: "/GeraetetypService/geraet" (HTTP-GET) The data source for the [Aufbereitungsprozess] select control should be loaded from the relative URL: "/AufbereitungsanlageService/aufbereitungsprozess" (HTTP-GET) An existing ProzessGeraet entity should be loaded from the relative URL: "/GeraetetypService/prozessgeraet/{id}" (HTTP-GET) If a new ProzessGeraet entity has been created, the new entity should be posted to the relative URL: "/GeraetetypService/prozessgeraet" (HTTP-POST) If an existing ProzessGeraet entity has been updated, the modified entity should be sent to the relative URL: "/GeraetetypService/prozessgeraet/{id}" (HTTP-PUT) If an existing ProzessGeraet entity has to be deleted, the following relative URL should be called: "/GeraetetypService/prozessgeraet/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum