Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PersonView
Please create a React-JS view called "PersonView" for the fields of the Person entity. The PersonView must contain the following fields: - name: AnzahlKinder type: INT - name: Familienname type: STRING - name: Familienstand type: STRING - name: Geburtsdatum type: DATE - name: Geburtsname type: STRING - name: Geburtsort type: STRING - name: Geschlecht type: STRING - name: IstVerstorben type: BOOL - name: Religion type: STRING - name: Staatsangehoerigkeit type: STRING - name: Sterbedatum type: DATE - name: TitelAkademisch type: STRING - name: TitelDoktor type: STRING - name: Vornamen type: STRING An existing Person entity should be loaded from the relative URL: "/PersonService/person/{id}" (HTTP-GET) If a new Person entity has been created, the new entity should be posted to the relative URL: "/PersonService/person" (HTTP-POST) If an existing Person entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/person/{id}" (HTTP-PUT) If an existing Person entity has to be deleted, the following relative URL should be called: "/PersonService/person/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Antrag columns: - column: Antragsdatum - column: Status - column: Behoerde - column: Gebuehr - column: Person - column: AntragTyp The table should have the title "Antrags" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/antrag/person/{id}" Add a HTML table to the view with the following MelderegisterEintrag columns: - column: Status - column: HauptWohnadresse - column: AktuelleGemeinde - column: ErstRegistriertAm - column: Person - column: LetzteAktualisierung The table should have the title "MelderegisterEintrags" und the data must be loaded from the server with the following relative URL: "/GemeindeService/melderegistereintrag/person/{id}" Add a HTML table to the view with the following WehrdienstErfassung columns: - column: Gemeinde - column: Person - column: Hinweis - column: Erfassungsdatum - column: Status The table should have the title "WehrdienstErfassungs" und the data must be loaded from the server with the following relative URL: "/PersonService/wehrdiensterfassung/person/{id}" Add a HTML table to the view with the following MigrationsAntrag columns: - column: Status - column: Hinweis - column: Antragsdatum - column: Person - column: Zielland - column: Herkunftsland The table should have the title "MigrationsAntrags" und the data must be loaded from the server with the following relative URL: "/GemeindeService/migrationsantrag/person/{id}" Add a HTML table to the view with the following MeldeVorgang columns: - column: Datum - column: Vorgangsart - column: NeueGemeinde - column: VorherigeGemeinde - column: Behoerde - column: Person - column: Vorgangsnummer The table should have the title "MeldeVorgangs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/meldevorgang/person/{id}" Add a HTML table to the view with the following AuslaenderStatus columns: - column: GueltigBis - column: GueltigVon - column: Person - column: TitelNummer - column: Behoerde - column: Aufenthaltstitel The table should have the title "AuslaenderStatuss" und the data must be loaded from the server with the following relative URL: "/PersonService/auslaenderstatus/person/{id}" Add a HTML table to the view with the following Dokument columns: - column: Ausstellungsdatum - column: DokumentNummer - column: Ablaufdatum - column: AusstellendeBehoerde - column: DokumentTyp - column: Person The table should have the title "Dokuments" und the data must be loaded from the server with the following relative URL: "/PersonService/dokument/person/{id}" Add a HTML table to the view with the following Wohnsitz columns: - column: IstHauptwohnung - column: Adresse - column: Einzugsdatum - column: Auszugsdatum - column: Person - column: WohnsitzArt The table should have the title "Wohnsitzs" und the data must be loaded from the server with the following relative URL: "/PersonService/wohnsitz/person/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum