Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BehoerdeApp
Please create a React-JS application for the BehoerdeModule. The application has to offer the following views for the user interface: 1. AntragView 2. BehoerdeView 3. BescheinigungView 4. FahrzeugAdresseAenderungView 5. MeldeVorgangView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The AntragView must contain the following fields: - name: Antragsdatum type: DATE - name: AntragTyp type: STRING - name: Behoerde type: Behoerde - name: Gebuehr type: STRING - name: Person type: Person - name: Status type: STRING The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) An existing Antrag entity should be loaded from the relative URL: "/BehoerdeService/antrag/{id}" (HTTP-GET) If a new Antrag entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/antrag" (HTTP-POST) If an existing Antrag entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/antrag/{id}" (HTTP-PUT) If an existing Antrag entity has to be deleted, the following relative URL should be called: "/BehoerdeService/antrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GewerbeRegisterAuszug columns: - column: Antrag - column: Firmenname - column: Rechtsform - column: RegisterNummer The table should have the title "GewerbeRegisterAuszugs" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/gewerberegisterauszug/antrag/{id}" Add a HTML table to the view with the following MelderegisterAuszug columns: - column: AnzahlPersonen - column: Ausgabeformat - column: AuszugTyp - column: Antrag - column: MitHistorie The table should have the title "MelderegisterAuszugs" und the data must be loaded from the server with the following relative URL: "/GemeindeService/melderegisterauszug/antrag/{id}" Add a HTML table to the view with the following Bescheinigung columns: - column: Zustellung - column: BescheinigungTyp - column: Antrag - column: Ausstellungsdatum - column: GueltigBis The table should have the title "Bescheinigungs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/bescheinigung/antrag/{id}" Add a HTML table to the view with the following FahrzeugAdresseAenderung columns: - column: FahrzeugKennzeichen - column: WirksamAm - column: NeueAdresse - column: Antrag - column: AlteAdresse The table should have the title "FahrzeugAdresseAenderungs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/fahrzeugadresseaenderung/antrag/{id}" 2. The BehoerdeView must contain the following fields: - name: Email type: STRING - name: Gemeinde type: Gemeinde - name: Hausnummer type: STRING - name: Name type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: Telefon type: STRING - name: Typ type: STRING The data source for the [Gemeinde] select control should be loaded from the relative URL: "/GemeindeService/gemeinde" (HTTP-GET) An existing Behoerde entity should be loaded from the relative URL: "/BehoerdeService/behoerde/{id}" (HTTP-GET) If a new Behoerde entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/behoerde" (HTTP-POST) If an existing Behoerde entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/behoerde/{id}" (HTTP-PUT) If an existing Behoerde entity has to be deleted, the following relative URL should be called: "/BehoerdeService/behoerde/{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/behoerde/{id}" Add a HTML table to the view with the following BehoerdeRechtsgrundlage columns: - column: Hinweis - column: Rechtsgrundlage - column: Behoerde The table should have the title "BehoerdeRechtsgrundlages" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/behoerderechtsgrundlage/behoerde/{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/behoerde/{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/ausstellendebehoerde/{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/behoerde/{id}" 3. The BescheinigungView must contain the following fields: - name: Antrag type: Antrag - name: Ausstellungsdatum type: DATE - name: BescheinigungTyp type: STRING - name: GueltigBis type: DATE - name: Zustellung type: STRING The data source for the [Antrag] select control should be loaded from the relative URL: "/BehoerdeService/antrag" (HTTP-GET) An existing Bescheinigung entity should be loaded from the relative URL: "/BehoerdeService/bescheinigung/{id}" (HTTP-GET) If a new Bescheinigung entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/bescheinigung" (HTTP-POST) If an existing Bescheinigung entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/bescheinigung/{id}" (HTTP-PUT) If an existing Bescheinigung entity has to be deleted, the following relative URL should be called: "/BehoerdeService/bescheinigung/{id}" (HTTP-DELETE) 4. The FahrzeugAdresseAenderungView must contain the following fields: - name: AlteAdresse type: Adresse - name: Antrag type: Antrag - name: FahrzeugKennzeichen type: STRING - name: NeueAdresse type: Adresse - name: WirksamAm type: DATE The data source for the [AlteAdresse] select control should be loaded from the relative URL: "/GemeindeService/adresse" (HTTP-GET) The data source for the [NeueAdresse] select control should be loaded from the relative URL: "/GemeindeService/adresse" (HTTP-GET) The data source for the [Antrag] select control should be loaded from the relative URL: "/BehoerdeService/antrag" (HTTP-GET) An existing FahrzeugAdresseAenderung entity should be loaded from the relative URL: "/BehoerdeService/fahrzeugadresseaenderung/{id}" (HTTP-GET) If a new FahrzeugAdresseAenderung entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/fahrzeugadresseaenderung" (HTTP-POST) If an existing FahrzeugAdresseAenderung entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/fahrzeugadresseaenderung/{id}" (HTTP-PUT) If an existing FahrzeugAdresseAenderung entity has to be deleted, the following relative URL should be called: "/BehoerdeService/fahrzeugadresseaenderung/{id}" (HTTP-DELETE) 5. The MeldeVorgangView must contain the following fields: - name: Behoerde type: Behoerde - name: Datum type: DATE - name: NeueGemeinde type: Gemeinde - name: Person type: Person - name: Vorgangsart type: STRING - name: Vorgangsnummer type: STRING - name: VorherigeGemeinde type: Gemeinde The data source for the [NeueGemeinde] select control should be loaded from the relative URL: "/GemeindeService/gemeinde" (HTTP-GET) The data source for the [VorherigeGemeinde] select control should be loaded from the relative URL: "/GemeindeService/gemeinde" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) An existing MeldeVorgang entity should be loaded from the relative URL: "/BehoerdeService/meldevorgang/{id}" (HTTP-GET) If a new MeldeVorgang entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/meldevorgang" (HTTP-POST) If an existing MeldeVorgang entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/meldevorgang/{id}" (HTTP-PUT) If an existing MeldeVorgang entity has to be deleted, the following relative URL should be called: "/BehoerdeService/meldevorgang/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum