Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
MembranartApp
Please create a React-JS application for the MembranartModule. The application has to offer the following views for the user interface: 1. MembranartView 2. MembranmodulView 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 MembranartView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING - name: PorengroesseMaxNm type: DOUBLE - name: PorengroesseMinNm type: DOUBLE An existing Membranart entity should be loaded from the relative URL: "/MembranartService/membranart/{id}" (HTTP-GET) If a new Membranart entity has been created, the new entity should be posted to the relative URL: "/MembranartService/membranart" (HTTP-POST) If an existing Membranart entity has been updated, the modified entity should be sent to the relative URL: "/MembranartService/membranart/{id}" (HTTP-PUT) If an existing Membranart entity has to be deleted, the following relative URL should be called: "/MembranartService/membranart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Membranmodul columns: - column: Beschreibung - column: MaxDruckBar - column: Name - column: MembranflaecheM2 - column: Hersteller - column: Membranart - column: Modell The table should have the title "Membranmoduls" und the data must be loaded from the server with the following relative URL: "/MembranartService/membranmodul/membranart/{id}" 2. The MembranmodulView must contain the following fields: - name: Beschreibung type: STRING - name: Hersteller type: STRING - name: MaxDruckBar type: DOUBLE - name: Membranart type: Membranart - name: MembranflaecheM2 type: DOUBLE - name: Modell type: STRING - name: Name type: STRING The data source for the [Membranart] select control should be loaded from the relative URL: "/MembranartService/membranart" (HTTP-GET) An existing Membranmodul entity should be loaded from the relative URL: "/MembranartService/membranmodul/{id}" (HTTP-GET) If a new Membranmodul entity has been created, the new entity should be posted to the relative URL: "/MembranartService/membranmodul" (HTTP-POST) If an existing Membranmodul entity has been updated, the modified entity should be sent to the relative URL: "/MembranartService/membranmodul/{id}" (HTTP-PUT) If an existing Membranmodul entity has to be deleted, the following relative URL should be called: "/MembranartService/membranmodul/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum