Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LagertypApp
Please create a React-JS application for the LagertypModule. The application has to offer the following views for the user interface: 1. FeldView 2. FeldrolleView 3. LagertypView 4. SeilsystemView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The FeldView must contain the following fields: - name: Bruecke type: Bruecke - name: Feldrolle type: Feldrolle - name: LaengeMeter type: STRING - name: Reihenfolge type: LONG The data source for the [Feldrolle] select control should be loaded from the relative URL: "/LagertypService/feldrolle" (HTTP-GET) The data source for the [Bruecke] select control should be loaded from the relative URL: "/BrueckeService/bruecke" (HTTP-GET) An existing Feld entity should be loaded from the relative URL: "/LagertypService/feld/{id}" (HTTP-GET) If a new Feld entity has been created, the new entity should be posted to the relative URL: "/LagertypService/feld" (HTTP-POST) If an existing Feld entity has been updated, the modified entity should be sent to the relative URL: "/LagertypService/feld/{id}" (HTTP-PUT) If an existing Feld entity has to be deleted, the following relative URL should be called: "/LagertypService/feld/{id}" (HTTP-DELETE) 2. The FeldrolleView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Feldrolle entity should be loaded from the relative URL: "/LagertypService/feldrolle/{id}" (HTTP-GET) If a new Feldrolle entity has been created, the new entity should be posted to the relative URL: "/LagertypService/feldrolle" (HTTP-POST) If an existing Feldrolle entity has been updated, the modified entity should be sent to the relative URL: "/LagertypService/feldrolle/{id}" (HTTP-PUT) If an existing Feldrolle entity has to be deleted, the following relative URL should be called: "/LagertypService/feldrolle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Feld columns: - column: Reihenfolge - column: Bruecke - column: Feldrolle - column: LaengeMeter The table should have the title "Felds" und the data must be loaded from the server with the following relative URL: "/LagertypService/feld/feldrolle/{id}" 3. The LagertypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Lagertyp entity should be loaded from the relative URL: "/LagertypService/lagertyp/{id}" (HTTP-GET) If a new Lagertyp entity has been created, the new entity should be posted to the relative URL: "/LagertypService/lagertyp" (HTTP-POST) If an existing Lagertyp entity has been updated, the modified entity should be sent to the relative URL: "/LagertypService/lagertyp/{id}" (HTTP-PUT) If an existing Lagertyp entity has to be deleted, the following relative URL should be called: "/LagertypService/lagertyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BrueckenBauteil columns: - column: Gruendungstyp - column: Lagertyp - column: Fahrbahnuebergangstyp - column: Schutzsystem - column: Bauteiltyp - column: Beschreibung - column: Gelaendersystem - column: Bruecke - column: Material - column: Decksystem The table should have the title "BrueckenBauteils" und the data must be loaded from the server with the following relative URL: "/MaterialService/brueckenbauteil/lagertyp/{id}" 4. The SeilsystemView must contain the following fields: - name: Beschreibung type: STRING - name: Bruecke type: Bruecke - name: Systemtyp type: STRING The data source for the [Bruecke] select control should be loaded from the relative URL: "/BrueckeService/bruecke" (HTTP-GET) An existing Seilsystem entity should be loaded from the relative URL: "/LagertypService/seilsystem/{id}" (HTTP-GET) If a new Seilsystem entity has been created, the new entity should be posted to the relative URL: "/LagertypService/seilsystem" (HTTP-POST) If an existing Seilsystem entity has been updated, the modified entity should be sent to the relative URL: "/LagertypService/seilsystem/{id}" (HTTP-PUT) If an existing Seilsystem entity has to be deleted, the following relative URL should be called: "/LagertypService/seilsystem/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Seil columns: - column: LaengeMeter - column: Seiltyp - column: Bruecke - column: Seilsystem - column: Beschreibung - column: DurchmesserMillimeter The table should have the title "Seils" und the data must be loaded from the server with the following relative URL: "/BrueckeService/seil/seilsystem/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum