Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GerichtsurteilApp
Please create a React-JS application for the GerichtsurteilModule. The application has to offer the following views for the user interface: 1. GerichtsurteilView 2. GerichtsurteilGesetzView 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 GerichtsurteilView must contain the following fields: - name: Aktenzeichen type: STRING - name: Beschreibung type: STRING - name: Datum type: DATE - name: GerichtName type: STRING - name: Kernaussage type: STRING An existing Gerichtsurteil entity should be loaded from the relative URL: "/GerichtsurteilService/gerichtsurteil/{id}" (HTTP-GET) If a new Gerichtsurteil entity has been created, the new entity should be posted to the relative URL: "/GerichtsurteilService/gerichtsurteil" (HTTP-POST) If an existing Gerichtsurteil entity has been updated, the modified entity should be sent to the relative URL: "/GerichtsurteilService/gerichtsurteil/{id}" (HTTP-PUT) If an existing Gerichtsurteil entity has to be deleted, the following relative URL should be called: "/GerichtsurteilService/gerichtsurteil/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GerichtsurteilGesetz columns: - column: Gerichtsurteil - column: Gesetz - column: BezugTyp The table should have the title "GerichtsurteilGesetzs" und the data must be loaded from the server with the following relative URL: "/GerichtsurteilService/gerichtsurteilgesetz/gerichtsurteil/{id}" 2. The GerichtsurteilGesetzView must contain the following fields: - name: BezugTyp type: STRING - name: Gerichtsurteil type: Gerichtsurteil - name: Gesetz type: Gesetz The data source for the [Gerichtsurteil] select control should be loaded from the relative URL: "/GerichtsurteilService/gerichtsurteil" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) An existing GerichtsurteilGesetz entity should be loaded from the relative URL: "/GerichtsurteilService/gerichtsurteilgesetz/{id}" (HTTP-GET) If a new GerichtsurteilGesetz entity has been created, the new entity should be posted to the relative URL: "/GerichtsurteilService/gerichtsurteilgesetz" (HTTP-POST) If an existing GerichtsurteilGesetz entity has been updated, the modified entity should be sent to the relative URL: "/GerichtsurteilService/gerichtsurteilgesetz/{id}" (HTTP-PUT) If an existing GerichtsurteilGesetz entity has to be deleted, the following relative URL should be called: "/GerichtsurteilService/gerichtsurteilgesetz/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum