Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GerichtView
Please create a React-JS view called "GerichtView" for the fields of the Gericht entity. 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}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum