Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GerichtlichesVerfahrenApp
Please create a React-JS application for the GerichtlichesVerfahrenModule. The application has to offer the following views for the user interface: 1. GerichtView 2. GerichtlichesVerfahrenView 3. KommunalerTraegerView 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 GerichtView must contain the following fields: - name: Bundesland type: STRING - name: Gerichtstyp type: STRING - name: Name type: STRING - name: Ort type: STRING An existing Gericht entity should be loaded from the relative URL: "/GerichtlichesVerfahrenService/gericht/{id}" (HTTP-GET) If a new Gericht entity has been created, the new entity should be posted to the relative URL: "/GerichtlichesVerfahrenService/gericht" (HTTP-POST) If an existing Gericht entity has been updated, the modified entity should be sent to the relative URL: "/GerichtlichesVerfahrenService/gericht/{id}" (HTTP-PUT) If an existing Gericht entity has to be deleted, the following relative URL should be called: "/GerichtlichesVerfahrenService/gericht/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GerichtlichesVerfahren columns: - column: Ergebnis - column: Gericht - column: Verfahrenstyp - column: Beschreibung - column: Aktenzeichen - column: Beginn - column: Ende The table should have the title "GerichtlichesVerfahrens" und the data must be loaded from the server with the following relative URL: "/GerichtlichesVerfahrenService/gerichtlichesverfahren/gericht/{id}" 2. The GerichtlichesVerfahrenView must contain the following fields: - name: Aktenzeichen type: STRING - name: Beginn type: DATE - name: Beschreibung type: STRING - name: Ende type: DATE - name: Ergebnis type: STRING - name: Gericht type: Gericht - name: Verfahrenstyp type: STRING The data source for the [Gericht] select control should be loaded from the relative URL: "/GerichtlichesVerfahrenService/gericht" (HTTP-GET) An existing GerichtlichesVerfahren entity should be loaded from the relative URL: "/GerichtlichesVerfahrenService/gerichtlichesverfahren/{id}" (HTTP-GET) If a new GerichtlichesVerfahren entity has been created, the new entity should be posted to the relative URL: "/GerichtlichesVerfahrenService/gerichtlichesverfahren" (HTTP-POST) If an existing GerichtlichesVerfahren entity has been updated, the modified entity should be sent to the relative URL: "/GerichtlichesVerfahrenService/gerichtlichesverfahren/{id}" (HTTP-PUT) If an existing GerichtlichesVerfahren entity has to be deleted, the following relative URL should be called: "/GerichtlichesVerfahrenService/gerichtlichesverfahren/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verfahrensbeteiligter columns: - column: Rolle - column: Person - column: GerichtlichesVerfahren The table should have the title "Verfahrensbeteiligters" und the data must be loaded from the server with the following relative URL: "/KindeswohlgefaehrdungsHinweisService/verfahrensbeteiligter/gerichtlichesverfahren/{id}" Add a HTML table to the view with the following MitwirkungJugendamtVerfahren columns: - column: BerichtErstellt - column: GerichtlichesVerfahren - column: Jugendamt - column: Beginn - column: Mitwirkungsart - column: Ende The table should have the title "MitwirkungJugendamtVerfahrens" und the data must be loaded from the server with the following relative URL: "/EinrichtungService/mitwirkungjugendamtverfahren/gerichtlichesverfahren/{id}" 3. The KommunalerTraegerView must contain the following fields: - name: Bundesland type: STRING - name: Name type: STRING - name: TraegerTyp type: STRING An existing KommunalerTraeger entity should be loaded from the relative URL: "/GerichtlichesVerfahrenService/kommunalertraeger/{id}" (HTTP-GET) If a new KommunalerTraeger entity has been created, the new entity should be posted to the relative URL: "/GerichtlichesVerfahrenService/kommunalertraeger" (HTTP-POST) If an existing KommunalerTraeger entity has been updated, the modified entity should be sent to the relative URL: "/GerichtlichesVerfahrenService/kommunalertraeger/{id}" (HTTP-PUT) If an existing KommunalerTraeger entity has to be deleted, the following relative URL should be called: "/GerichtlichesVerfahrenService/kommunalertraeger/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Jugendamt columns: - column: Bezeichnung - column: IstLandesjugendamt - column: Name - column: Ort - column: AktivSeit - column: TraegerArt - column: IstOertlicherTraeger - column: KommunalerTraeger - column: AktivBis - column: Bundesland The table should have the title "Jugendamts" und the data must be loaded from the server with the following relative URL: "/JugendamtService/jugendamt/kommunalertraeger/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum