Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AntragView
Please create a React-JS view called "AntragView" for the fields of the Antrag entity. The AntragView must contain the following fields: - name: AntragArt type: STRING - name: Betreuung type: Betreuung - name: Eingangsdatum type: DATE - name: EingereichtVonBehoerde type: Betreuungsbehoerde - name: EingereichtVonBetreuer type: Betreuer - name: EingereichtVonBetreuter type: Betreuter - name: EingereichtVonPerson type: Person - name: Gericht type: Betreuungsgericht - name: Notizen type: STRING - name: Status type: STRING The data source for the [Betreuung] select control should be loaded from the relative URL: "/BetreuungService/betreuung" (HTTP-GET) The data source for the [Gericht] select control should be loaded from the relative URL: "/BetreuungService/betreuungsgericht" (HTTP-GET) The data source for the [EingereichtVonBetreuter] select control should be loaded from the relative URL: "/BetreuterService/betreuter" (HTTP-GET) The data source for the [EingereichtVonBetreuer] select control should be loaded from the relative URL: "/BetreuerService/betreuer" (HTTP-GET) The data source for the [EingereichtVonPerson] select control should be loaded from the relative URL: "/BetreuterService/person" (HTTP-GET) The data source for the [EingereichtVonBehoerde] select control should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsbehoerde" (HTTP-GET) An existing Antrag entity should be loaded from the relative URL: "/BetreuterService/antrag/{id}" (HTTP-GET) If a new Antrag entity has been created, the new entity should be posted to the relative URL: "/BetreuterService/antrag" (HTTP-POST) If an existing Antrag entity has been updated, the modified entity should be sent to the relative URL: "/BetreuterService/antrag/{id}" (HTTP-PUT) If an existing Antrag entity has to be deleted, the following relative URL should be called: "/BetreuterService/antrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Beschluss columns: - column: Zusammenfassung - column: Antrag - column: Gericht - column: Rechtsgrundlage - column: Ergebnis - column: BeschlussArt - column: Entscheidungsdatum - column: Betreuung The table should have the title "Beschlusss" und the data must be loaded from the server with the following relative URL: "/BetreuungService/beschluss/antrag/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum