Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GerichtApp
Please create a React-JS application for the GerichtModule. The application has to offer the following views for the user interface: 1. GerichtView 2. GerichtGesetzView 3. RechtsmittelView 4. SpruchkoerperView 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 GerichtView must contain the following fields: - name: Bundesland type: Bundesland - name: Gerichtstyp type: Gerichtstyp - name: IstErsteInstanz type: BOOL - name: IstLetzteInstanz type: BOOL - name: Name type: STRING - name: Postleitzahl type: STRING - name: Stadt type: STRING - name: Strasse type: STRING The data source for the [Bundesland] select control should be loaded from the relative URL: "/BundeslandService/bundesland" (HTTP-GET) The data source for the [Gerichtstyp] select control should be loaded from the relative URL: "/GerichtstypService/gerichtstyp" (HTTP-GET) An existing Gericht entity should be loaded from the relative URL: "/GerichtService/gericht/{id}" (HTTP-GET) If a new Gericht entity has been created, the new entity should be posted to the relative URL: "/GerichtService/gericht" (HTTP-POST) If an existing Gericht entity has been updated, the modified entity should be sent to the relative URL: "/GerichtService/gericht/{id}" (HTTP-PUT) If an existing Gericht entity has to be deleted, the following relative URL should be called: "/GerichtService/gericht/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gerichtszustaendigkeit columns: - column: Mindestwert - column: Maximalwert - column: IstExklusiv - column: Verfahrensart - column: MaximalstrafeJahre - column: Gericht The table should have the title "Gerichtszustaendigkeits" und the data must be loaded from the server with the following relative URL: "/VerfahrenService/gerichtszustaendigkeit/gericht/{id}" Add a HTML table to the view with the following Verfahren columns: - column: Erstgericht - column: Enddatum - column: Verfahrensart - column: Beschreibung - column: Startdatum - column: Aktenzeichen - column: AktuellesGericht - column: IstAbgeschlossen The table should have the title "Verfahrens" und the data must be loaded from the server with the following relative URL: "/VerfahrenService/verfahren/aktuellesgericht/{id}" Add a HTML table to the view with the following Verfahren columns: - column: Erstgericht - column: Enddatum - column: Verfahrensart - column: Beschreibung - column: Startdatum - column: Aktenzeichen - column: AktuellesGericht - column: IstAbgeschlossen The table should have the title "Verfahrens" und the data must be loaded from the server with the following relative URL: "/VerfahrenService/verfahren/erstgericht/{id}" Add a HTML table to the view with the following GerichtGesetz columns: - column: Gericht - column: Gesetz The table should have the title "GerichtGesetzs" und the data must be loaded from the server with the following relative URL: "/GerichtService/gerichtgesetz/gericht/{id}" Add a HTML table to the view with the following Gerichtsbezirk columns: - column: Bundesland - column: Gericht - column: Name - column: Beschreibung The table should have the title "Gerichtsbezirks" und the data must be loaded from the server with the following relative URL: "/BundeslandService/gerichtsbezirk/gericht/{id}" Add a HTML table to the view with the following Spruchkoerper columns: - column: MindestanzahlRichter - column: Gericht - column: Typ - column: Name - column: MaximalanzahlRichter The table should have the title "Spruchkoerpers" und the data must be loaded from the server with the following relative URL: "/GerichtService/spruchkoerper/gericht/{id}" Add a HTML table to the view with the following Richter columns: - column: Nachname - column: Ernennungsdatum - column: Vorname - column: IstBerufsrichter - column: Gericht - column: Titel The table should have the title "Richters" und the data must be loaded from the server with the following relative URL: "/GerichtstypService/richter/gericht/{id}" Add a HTML table to the view with the following Rechtsmittel columns: - column: Eingangsdatum - column: Ausgangsverfahren - column: Rechtsmittelgericht - column: Rechtsmitteltyp - column: Entscheidungsdatum - column: Ergebnis - column: Zielverfahren The table should have the title "Rechtsmittels" und the data must be loaded from the server with the following relative URL: "/GerichtService/rechtsmittel/rechtsmittelgericht/{id}" 2. The GerichtGesetzView must contain the following fields: - name: Gericht type: Gericht - name: Gesetz type: Gesetz The data source for the [Gericht] select control should be loaded from the relative URL: "/GerichtService/gericht" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) An existing GerichtGesetz entity should be loaded from the relative URL: "/GerichtService/gerichtgesetz/{id}" (HTTP-GET) If a new GerichtGesetz entity has been created, the new entity should be posted to the relative URL: "/GerichtService/gerichtgesetz" (HTTP-POST) If an existing GerichtGesetz entity has been updated, the modified entity should be sent to the relative URL: "/GerichtService/gerichtgesetz/{id}" (HTTP-PUT) If an existing GerichtGesetz entity has to be deleted, the following relative URL should be called: "/GerichtService/gerichtgesetz/{id}" (HTTP-DELETE) 3. The RechtsmittelView must contain the following fields: - name: Ausgangsverfahren type: Verfahren - name: Eingangsdatum type: DATE - name: Entscheidungsdatum type: DATE - name: Ergebnis type: STRING - name: Rechtsmittelgericht type: Gericht - name: Rechtsmitteltyp type: STRING - name: Zielverfahren type: Verfahren The data source for the [Rechtsmittelgericht] select control should be loaded from the relative URL: "/GerichtService/gericht" (HTTP-GET) The data source for the [Ausgangsverfahren] select control should be loaded from the relative URL: "/VerfahrenService/verfahren" (HTTP-GET) The data source for the [Zielverfahren] select control should be loaded from the relative URL: "/VerfahrenService/verfahren" (HTTP-GET) An existing Rechtsmittel entity should be loaded from the relative URL: "/GerichtService/rechtsmittel/{id}" (HTTP-GET) If a new Rechtsmittel entity has been created, the new entity should be posted to the relative URL: "/GerichtService/rechtsmittel" (HTTP-POST) If an existing Rechtsmittel entity has been updated, the modified entity should be sent to the relative URL: "/GerichtService/rechtsmittel/{id}" (HTTP-PUT) If an existing Rechtsmittel entity has to be deleted, the following relative URL should be called: "/GerichtService/rechtsmittel/{id}" (HTTP-DELETE) 4. The SpruchkoerperView must contain the following fields: - name: Gericht type: Gericht - name: MaximalanzahlRichter type: LONG - name: MindestanzahlRichter type: LONG - name: Name type: STRING - name: Typ type: STRING The data source for the [Gericht] select control should be loaded from the relative URL: "/GerichtService/gericht" (HTTP-GET) An existing Spruchkoerper entity should be loaded from the relative URL: "/GerichtService/spruchkoerper/{id}" (HTTP-GET) If a new Spruchkoerper entity has been created, the new entity should be posted to the relative URL: "/GerichtService/spruchkoerper" (HTTP-POST) If an existing Spruchkoerper entity has been updated, the modified entity should be sent to the relative URL: "/GerichtService/spruchkoerper/{id}" (HTTP-PUT) If an existing Spruchkoerper entity has to be deleted, the following relative URL should be called: "/GerichtService/spruchkoerper/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SpruchkoerperZuweisung columns: - column: Spruchkoerper - column: Rollenbeschreibung - column: Verfahren - column: Zuweisungsdatum The table should have the title "SpruchkoerperZuweisungs" und the data must be loaded from the server with the following relative URL: "/VerfahrenService/spruchkoerperzuweisung/spruchkoerper/{id}" Add a HTML table to the view with the following SpruchkoerperMitglied columns: - column: Spruchkoerper - column: Rolle - column: Richter The table should have the title "SpruchkoerperMitglieds" und the data must be loaded from the server with the following relative URL: "/GerichtstypService/spruchkoerpermitglied/spruchkoerper/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum