Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FestpunktApp
Please create a React-JS application for the FestpunktModule. The application has to offer the following views for the user interface: 1. FestpunktView 2. GrenzmarkeView 3. GrenzpunktView 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 FestpunktView must contain the following fields: - name: AngelegtAm type: DATE - name: Beschreibung type: STRING - name: ErzeugtAm type: DATE - name: Kennung type: STRING - name: Koordinatensystem type: Koordinatensystem - name: X type: DOUBLE - name: Y type: DOUBLE - name: Z type: DOUBLE The data source for the [Koordinatensystem] select control should be loaded from the relative URL: "/RaumbezugssystemService/koordinatensystem" (HTTP-GET) An existing Festpunkt entity should be loaded from the relative URL: "/FestpunktService/festpunkt/{id}" (HTTP-GET) If a new Festpunkt entity has been created, the new entity should be posted to the relative URL: "/FestpunktService/festpunkt" (HTTP-POST) If an existing Festpunkt entity has been updated, the modified entity should be sent to the relative URL: "/FestpunktService/festpunkt/{id}" (HTTP-PUT) If an existing Festpunkt entity has to be deleted, the following relative URL should be called: "/FestpunktService/festpunkt/{id}" (HTTP-DELETE) 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/festpunkt/{id}" 2. The GrenzmarkeView must contain the following fields: - name: ErzeugtAm type: DATE - name: GesetzAm type: DATE - name: Grenzpunkt type: Grenzpunkt - name: Markentyp type: STRING - name: Zustand type: STRING The data source for the [Grenzpunkt] select control should be loaded from the relative URL: "/FestpunktService/grenzpunkt" (HTTP-GET) An existing Grenzmarke entity should be loaded from the relative URL: "/FestpunktService/grenzmarke/{id}" (HTTP-GET) If a new Grenzmarke entity has been created, the new entity should be posted to the relative URL: "/FestpunktService/grenzmarke" (HTTP-POST) If an existing Grenzmarke entity has been updated, the modified entity should be sent to the relative URL: "/FestpunktService/grenzmarke/{id}" (HTTP-PUT) If an existing Grenzmarke entity has to be deleted, the following relative URL should be called: "/FestpunktService/grenzmarke/{id}" (HTTP-DELETE) 3. The GrenzpunktView must contain the following fields: - name: ErzeugtAm type: DATE - name: Festpunkt type: Festpunkt - name: Flurstueck type: Flurstueck - name: LokaleKennung type: STRING - name: Reihenfolge type: INT The data source for the [Flurstueck] select control should be loaded from the relative URL: "/FlurstueckService/flurstueck" (HTTP-GET) The data source for the [Festpunkt] select control should be loaded from the relative URL: "/FestpunktService/festpunkt" (HTTP-GET) An existing Grenzpunkt entity should be loaded from the relative URL: "/FestpunktService/grenzpunkt/{id}" (HTTP-GET) If a new Grenzpunkt entity has been created, the new entity should be posted to the relative URL: "/FestpunktService/grenzpunkt" (HTTP-POST) If an existing Grenzpunkt entity has been updated, the modified entity should be sent to the relative URL: "/FestpunktService/grenzpunkt/{id}" (HTTP-PUT) If an existing Grenzpunkt entity has to be deleted, the following relative URL should be called: "/FestpunktService/grenzpunkt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Grenzmarke columns: - column: Zustand - column: Grenzpunkt - column: ErzeugtAm - column: GesetzAm - column: Markentyp The table should have the title "Grenzmarkes" und the data must be loaded from the server with the following relative URL: "/FestpunktService/grenzmarke/grenzpunkt/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum