Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VermessungsartApp
Please create a React-JS application for the VermessungsartModule. The application has to offer the following views for the user interface: 1. ThemaView 2. ThemenseiteView 3. VermessungsartView 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 ThemaView must contain the following fields: - name: Aktiv type: BOOL - name: Beschreibung type: STRING - name: ErzeugtAm type: DATE - name: Organisationseinheit type: Organisationseinheit - name: Slug type: STRING - name: Titel type: STRING The data source for the [Organisationseinheit] select control should be loaded from the relative URL: "/OrganisationseinheitService/organisationseinheit" (HTTP-GET) An existing Thema entity should be loaded from the relative URL: "/VermessungsartService/thema/{id}" (HTTP-GET) If a new Thema entity has been created, the new entity should be posted to the relative URL: "/VermessungsartService/thema" (HTTP-POST) If an existing Thema entity has been updated, the modified entity should be sent to the relative URL: "/VermessungsartService/thema/{id}" (HTTP-PUT) If an existing Thema entity has to be deleted, the following relative URL should be called: "/VermessungsartService/thema/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Themenseite columns: - column: Zusammenfassung - column: Titel - column: Thema - column: ErzeugtAm - column: AktualisiertAm - column: Url The table should have the title "Themenseites" und the data must be loaded from the server with the following relative URL: "/VermessungsartService/themenseite/thema/{id}" 2. The ThemenseiteView must contain the following fields: - name: AktualisiertAm type: DATE - name: ErzeugtAm type: DATE - name: Thema type: Thema - name: Titel type: STRING - name: Url type: STRING - name: Zusammenfassung type: STRING The data source for the [Thema] select control should be loaded from the relative URL: "/VermessungsartService/thema" (HTTP-GET) An existing Themenseite entity should be loaded from the relative URL: "/VermessungsartService/themenseite/{id}" (HTTP-GET) If a new Themenseite entity has been created, the new entity should be posted to the relative URL: "/VermessungsartService/themenseite" (HTTP-POST) If an existing Themenseite entity has been updated, the modified entity should be sent to the relative URL: "/VermessungsartService/themenseite/{id}" (HTTP-PUT) If an existing Themenseite entity has to be deleted, the following relative URL should be called: "/VermessungsartService/themenseite/{id}" (HTTP-DELETE) 3. The VermessungsartView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: ErzeugtAm type: DATE - name: Name type: STRING An existing Vermessungsart entity should be loaded from the relative URL: "/VermessungsartService/vermessungsart/{id}" (HTTP-GET) If a new Vermessungsart entity has been created, the new entity should be posted to the relative URL: "/VermessungsartService/vermessungsart" (HTTP-POST) If an existing Vermessungsart entity has been updated, the modified entity should be sent to the relative URL: "/VermessungsartService/vermessungsart/{id}" (HTTP-PUT) If an existing Vermessungsart entity has to be deleted, the following relative URL should be called: "/VermessungsartService/vermessungsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Vermessung columns: - column: Vermessungsart - column: Organisationseinheit - column: ErzeugtAm - column: Flurstueck - column: DurchgefuehrtVon - column: Vorgangsnummer - column: Beginn - column: Ende - column: Status - column: Auftraggeber The table should have the title "Vermessungs" und the data must be loaded from the server with the following relative URL: "/OrganisationseinheitService/vermessung/vermessungsart/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum