Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FlurstueckApp
Please create a React-JS application for the FlurstueckModule. The application has to offer the following views for the user interface: 1. FlurstueckView 2. GebaeudeView 3. GebaeudemessungView 4. GemarkungView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The FlurstueckView must contain the following fields: - name: Bebaut type: BOOL - name: ErzeugtAm type: DATE - name: FlaecheQm type: DOUBLE - name: Flurstuecksnummer type: STRING - name: Gemarkung type: Gemarkung - name: Nutzungsart type: STRING The data source for the [Gemarkung] select control should be loaded from the relative URL: "/FlurstueckService/gemarkung" (HTTP-GET) An existing Flurstueck entity should be loaded from the relative URL: "/FlurstueckService/flurstueck/{id}" (HTTP-GET) If a new Flurstueck entity has been created, the new entity should be posted to the relative URL: "/FlurstueckService/flurstueck" (HTTP-POST) If an existing Flurstueck entity has been updated, the modified entity should be sent to the relative URL: "/FlurstueckService/flurstueck/{id}" (HTTP-PUT) If an existing Flurstueck entity has to be deleted, the following relative URL should be called: "/FlurstueckService/flurstueck/{id}" (HTTP-DELETE) Add a HTML table to the view with the following FlurstuecksAenderung columns: - column: NeueFlaecheQm - column: AlteFlaecheQm - column: Flurstueck - column: Beschreibung - column: Vermessung - column: Aenderungsart - column: ErzeugtAm - column: WirksamAm The table should have the title "FlurstuecksAenderungs" und the data must be loaded from the server with the following relative URL: "/OrganisationseinheitService/flurstuecksaenderung/flurstueck/{id}" Add a HTML table to the view with the following Gebaeude columns: - column: ErzeugtAm - column: Gebaeudenummer - column: Nutzung - column: GrundflaecheQm - column: Geschosse - column: Flurstueck The table should have the title "Gebaeudes" und the data must be loaded from the server with the following relative URL: "/FlurstueckService/gebaeude/flurstueck/{id}" Add a HTML table to the view with the following Grenzpunkt columns: - column: Reihenfolge - column: Festpunkt - column: Flurstueck - column: LokaleKennung - column: ErzeugtAm The table should have the title "Grenzpunkts" und the data must be loaded from the server with the following relative URL: "/FestpunktService/grenzpunkt/flurstueck/{id}" 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/flurstueck/{id}" 2. The GebaeudeView must contain the following fields: - name: ErzeugtAm type: DATE - name: Flurstueck type: Flurstueck - name: Gebaeudenummer type: STRING - name: Geschosse type: INT - name: GrundflaecheQm type: DOUBLE - name: Nutzung type: STRING The data source for the [Flurstueck] select control should be loaded from the relative URL: "/FlurstueckService/flurstueck" (HTTP-GET) An existing Gebaeude entity should be loaded from the relative URL: "/FlurstueckService/gebaeude/{id}" (HTTP-GET) If a new Gebaeude entity has been created, the new entity should be posted to the relative URL: "/FlurstueckService/gebaeude" (HTTP-POST) If an existing Gebaeude entity has been updated, the modified entity should be sent to the relative URL: "/FlurstueckService/gebaeude/{id}" (HTTP-PUT) If an existing Gebaeude entity has to be deleted, the following relative URL should be called: "/FlurstueckService/gebaeude/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gebaeudemessung columns: - column: GemesseneGrundflaecheQm - column: Messdatum - column: ErzeugtAm - column: Gebaeude - column: Vermessung - column: HoeheM The table should have the title "Gebaeudemessungs" und the data must be loaded from the server with the following relative URL: "/FlurstueckService/gebaeudemessung/gebaeude/{id}" 3. The GebaeudemessungView must contain the following fields: - name: ErzeugtAm type: DATE - name: Gebaeude type: Gebaeude - name: GemesseneGrundflaecheQm type: DOUBLE - name: HoeheM type: DOUBLE - name: Messdatum type: DATE - name: Vermessung type: Vermessung The data source for the [Gebaeude] select control should be loaded from the relative URL: "/FlurstueckService/gebaeude" (HTTP-GET) The data source for the [Vermessung] select control should be loaded from the relative URL: "/OrganisationseinheitService/vermessung" (HTTP-GET) An existing Gebaeudemessung entity should be loaded from the relative URL: "/FlurstueckService/gebaeudemessung/{id}" (HTTP-GET) If a new Gebaeudemessung entity has been created, the new entity should be posted to the relative URL: "/FlurstueckService/gebaeudemessung" (HTTP-POST) If an existing Gebaeudemessung entity has been updated, the modified entity should be sent to the relative URL: "/FlurstueckService/gebaeudemessung/{id}" (HTTP-PUT) If an existing Gebaeudemessung entity has to be deleted, the following relative URL should be called: "/FlurstueckService/gebaeudemessung/{id}" (HTTP-DELETE) 4. The GemarkungView must contain the following fields: - name: Code type: STRING - name: ErzeugtAm type: DATE - name: Gemeinde type: Gemeinde - name: Name type: STRING The data source for the [Gemeinde] select control should be loaded from the relative URL: "/GemeindeService/gemeinde" (HTTP-GET) An existing Gemarkung entity should be loaded from the relative URL: "/FlurstueckService/gemarkung/{id}" (HTTP-GET) If a new Gemarkung entity has been created, the new entity should be posted to the relative URL: "/FlurstueckService/gemarkung" (HTTP-POST) If an existing Gemarkung entity has been updated, the modified entity should be sent to the relative URL: "/FlurstueckService/gemarkung/{id}" (HTTP-PUT) If an existing Gemarkung entity has to be deleted, the following relative URL should be called: "/FlurstueckService/gemarkung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Flurstueck columns: - column: FlaecheQm - column: Flurstuecksnummer - column: Gemarkung - column: Nutzungsart - column: ErzeugtAm - column: Bebaut The table should have the title "Flurstuecks" und the data must be loaded from the server with the following relative URL: "/FlurstueckService/flurstueck/gemarkung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum