Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AusstattungskategorieApp
Please create a React-JS application for the AusstattungskategorieModule. The application has to offer the following views for the user interface: 1. AusstattungView 2. AusstattungskategorieView 3. StellplatzAusstattungView 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 AusstattungView must contain the following fields: - name: Ausstattungskategorie type: Ausstattungskategorie - name: Beschreibung type: STRING - name: Code type: STRING - name: Name type: STRING The data source for the [Ausstattungskategorie] select control should be loaded from the relative URL: "/AusstattungskategorieService/ausstattungskategorie" (HTTP-GET) An existing Ausstattung entity should be loaded from the relative URL: "/AusstattungskategorieService/ausstattung/{id}" (HTTP-GET) If a new Ausstattung entity has been created, the new entity should be posted to the relative URL: "/AusstattungskategorieService/ausstattung" (HTTP-POST) If an existing Ausstattung entity has been updated, the modified entity should be sent to the relative URL: "/AusstattungskategorieService/ausstattung/{id}" (HTTP-PUT) If an existing Ausstattung entity has to be deleted, the following relative URL should be called: "/AusstattungskategorieService/ausstattung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following StellplatzAusstattung columns: - column: Stellplatz - column: Menge - column: Hinweis - column: Ausstattung The table should have the title "StellplatzAusstattungs" und the data must be loaded from the server with the following relative URL: "/AusstattungskategorieService/stellplatzausstattung/ausstattung/{id}" 2. The AusstattungskategorieView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: Name type: STRING An existing Ausstattungskategorie entity should be loaded from the relative URL: "/AusstattungskategorieService/ausstattungskategorie/{id}" (HTTP-GET) If a new Ausstattungskategorie entity has been created, the new entity should be posted to the relative URL: "/AusstattungskategorieService/ausstattungskategorie" (HTTP-POST) If an existing Ausstattungskategorie entity has been updated, the modified entity should be sent to the relative URL: "/AusstattungskategorieService/ausstattungskategorie/{id}" (HTTP-PUT) If an existing Ausstattungskategorie entity has to be deleted, the following relative URL should be called: "/AusstattungskategorieService/ausstattungskategorie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Ausstattung columns: - column: Code - column: Name - column: Ausstattungskategorie - column: Beschreibung The table should have the title "Ausstattungs" und the data must be loaded from the server with the following relative URL: "/AusstattungskategorieService/ausstattung/ausstattungskategorie/{id}" 3. The StellplatzAusstattungView must contain the following fields: - name: Ausstattung type: Ausstattung - name: Hinweis type: STRING - name: Menge type: INT - name: Stellplatz type: Stellplatz The data source for the [Ausstattung] select control should be loaded from the relative URL: "/AusstattungskategorieService/ausstattung" (HTTP-GET) The data source for the [Stellplatz] select control should be loaded from the relative URL: "/StellplatzService/stellplatz" (HTTP-GET) An existing StellplatzAusstattung entity should be loaded from the relative URL: "/AusstattungskategorieService/stellplatzausstattung/{id}" (HTTP-GET) If a new StellplatzAusstattung entity has been created, the new entity should be posted to the relative URL: "/AusstattungskategorieService/stellplatzausstattung" (HTTP-POST) If an existing StellplatzAusstattung entity has been updated, the modified entity should be sent to the relative URL: "/AusstattungskategorieService/stellplatzausstattung/{id}" (HTTP-PUT) If an existing StellplatzAusstattung entity has to be deleted, the following relative URL should be called: "/AusstattungskategorieService/stellplatzausstattung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum