Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TragwerkssystemApp
Please create a React-JS application for the TragwerkssystemModule. The application has to offer the following views for the user interface: 1. BrueckeLagekategorieView 2. LagekategorieView 3. TragwerkssystemView 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 BrueckeLagekategorieView must contain the following fields: - name: Bruecke type: Bruecke - name: Lagekategorie type: Lagekategorie The data source for the [Lagekategorie] select control should be loaded from the relative URL: "/TragwerkssystemService/lagekategorie" (HTTP-GET) The data source for the [Bruecke] select control should be loaded from the relative URL: "/BrueckeService/bruecke" (HTTP-GET) An existing BrueckeLagekategorie entity should be loaded from the relative URL: "/TragwerkssystemService/brueckelagekategorie/{id}" (HTTP-GET) If a new BrueckeLagekategorie entity has been created, the new entity should be posted to the relative URL: "/TragwerkssystemService/brueckelagekategorie" (HTTP-POST) If an existing BrueckeLagekategorie entity has been updated, the modified entity should be sent to the relative URL: "/TragwerkssystemService/brueckelagekategorie/{id}" (HTTP-PUT) If an existing BrueckeLagekategorie entity has to be deleted, the following relative URL should be called: "/TragwerkssystemService/brueckelagekategorie/{id}" (HTTP-DELETE) 2. The LagekategorieView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Lagekategorie entity should be loaded from the relative URL: "/TragwerkssystemService/lagekategorie/{id}" (HTTP-GET) If a new Lagekategorie entity has been created, the new entity should be posted to the relative URL: "/TragwerkssystemService/lagekategorie" (HTTP-POST) If an existing Lagekategorie entity has been updated, the modified entity should be sent to the relative URL: "/TragwerkssystemService/lagekategorie/{id}" (HTTP-PUT) If an existing Lagekategorie entity has to be deleted, the following relative URL should be called: "/TragwerkssystemService/lagekategorie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BrueckeLagekategorie columns: - column: Lagekategorie - column: Bruecke The table should have the title "BrueckeLagekategories" und the data must be loaded from the server with the following relative URL: "/TragwerkssystemService/brueckelagekategorie/lagekategorie/{id}" 3. The TragwerkssystemView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Tragwerkssystem entity should be loaded from the relative URL: "/TragwerkssystemService/tragwerkssystem/{id}" (HTTP-GET) If a new Tragwerkssystem entity has been created, the new entity should be posted to the relative URL: "/TragwerkssystemService/tragwerkssystem" (HTTP-POST) If an existing Tragwerkssystem entity has been updated, the modified entity should be sent to the relative URL: "/TragwerkssystemService/tragwerkssystem/{id}" (HTTP-PUT) If an existing Tragwerkssystem entity has to be deleted, the following relative URL should be called: "/TragwerkssystemService/tragwerkssystem/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Bruecke columns: - column: BreiteMeter - column: Name - column: Eroeffnung - column: Beschreibung - column: LaengeMeter - column: Baujahr - column: Tragwerkssystem - column: Wasserlauf - column: BeweglichesBrueckensystem - column: Material - column: HauptspannweiteMeter - column: IstBeweglich - column: AnzahlFelder - column: LichtraumhoeheMeter - column: Ort The table should have the title "Brueckes" und the data must be loaded from the server with the following relative URL: "/BrueckeService/bruecke/tragwerkssystem/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum