Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GemeindeApp
Please create a React-JS application for the GemeindeModule. The application has to offer the following views for the user interface: 1. BodenrichtwertzoneView 2. GemeindeView 3. KreisView 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 BodenrichtwertzoneView must contain the following fields: - name: Beschreibung type: STRING - name: ErzeugtAm type: DATE - name: Gemeinde type: Gemeinde - name: Nutzungsart type: STRING - name: Zonencode type: STRING The data source for the [Gemeinde] select control should be loaded from the relative URL: "/GemeindeService/gemeinde" (HTTP-GET) An existing Bodenrichtwertzone entity should be loaded from the relative URL: "/GemeindeService/bodenrichtwertzone/{id}" (HTTP-GET) If a new Bodenrichtwertzone entity has been created, the new entity should be posted to the relative URL: "/GemeindeService/bodenrichtwertzone" (HTTP-POST) If an existing Bodenrichtwertzone entity has been updated, the modified entity should be sent to the relative URL: "/GemeindeService/bodenrichtwertzone/{id}" (HTTP-PUT) If an existing Bodenrichtwertzone entity has to be deleted, the following relative URL should be called: "/GemeindeService/bodenrichtwertzone/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Bodenrichtwert columns: - column: ErzeugtAm - column: WertQm - column: Bodenrichtwertzone - column: Kommentar - column: Stichtag The table should have the title "Bodenrichtwerts" und the data must be loaded from the server with the following relative URL: "/RaumbezugssystemService/bodenrichtwert/bodenrichtwertzone/{id}" 2. The GemeindeView must contain the following fields: - name: AmtlicherSchluessel type: STRING - name: ErzeugtAm type: DATE - name: Kreis type: Kreis - name: Name type: STRING The data source for the [Kreis] select control should be loaded from the relative URL: "/GemeindeService/kreis" (HTTP-GET) An existing Gemeinde entity should be loaded from the relative URL: "/GemeindeService/gemeinde/{id}" (HTTP-GET) If a new Gemeinde entity has been created, the new entity should be posted to the relative URL: "/GemeindeService/gemeinde" (HTTP-POST) If an existing Gemeinde entity has been updated, the modified entity should be sent to the relative URL: "/GemeindeService/gemeinde/{id}" (HTTP-PUT) If an existing Gemeinde entity has to be deleted, the following relative URL should be called: "/GemeindeService/gemeinde/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Bodenrichtwertzone columns: - column: Beschreibung - column: Nutzungsart - column: ErzeugtAm - column: Gemeinde - column: Zonencode The table should have the title "Bodenrichtwertzones" und the data must be loaded from the server with the following relative URL: "/GemeindeService/bodenrichtwertzone/gemeinde/{id}" Add a HTML table to the view with the following Gemarkung columns: - column: Gemeinde - column: Code - column: ErzeugtAm - column: Name The table should have the title "Gemarkungs" und the data must be loaded from the server with the following relative URL: "/FlurstueckService/gemarkung/gemeinde/{id}" 3. The KreisView must contain the following fields: - name: Code type: STRING - name: ErzeugtAm type: DATE - name: Name type: STRING An existing Kreis entity should be loaded from the relative URL: "/GemeindeService/kreis/{id}" (HTTP-GET) If a new Kreis entity has been created, the new entity should be posted to the relative URL: "/GemeindeService/kreis" (HTTP-POST) If an existing Kreis entity has been updated, the modified entity should be sent to the relative URL: "/GemeindeService/kreis/{id}" (HTTP-PUT) If an existing Kreis entity has to be deleted, the following relative URL should be called: "/GemeindeService/kreis/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gemeinde columns: - column: Kreis - column: Name - column: ErzeugtAm - column: AmtlicherSchluessel The table should have the title "Gemeindes" und the data must be loaded from the server with the following relative URL: "/GemeindeService/gemeinde/kreis/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum