Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
StationView
Please create a React-JS view called "StationView" for the fields of the Station entity. The StationView must contain the following fields: - name: Abteilung type: Abteilung - name: Bettenanzahl type: LONG - name: Etage type: STRING - name: Name type: STRING The data source for the [Abteilung] select control should be loaded from the relative URL: "/AbteilungService/abteilung" (HTTP-GET) An existing Station entity should be loaded from the relative URL: "/StationService/station/{id}" (HTTP-GET) If a new Station entity has been created, the new entity should be posted to the relative URL: "/StationService/station" (HTTP-POST) If an existing Station entity has been updated, the modified entity should be sent to the relative URL: "/StationService/station/{id}" (HTTP-PUT) If an existing Station entity has to be deleted, the following relative URL should be called: "/StationService/station/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Dienst columns: - column: Station - column: VonDatumZeit - column: DienstArt - column: BisDatumZeit - column: Mitarbeiter The table should have the title "Diensts" und the data must be loaded from the server with the following relative URL: "/MitarbeiterRolleService/dienst/station/{id}" Add a HTML table to the view with the following Bewegung columns: - column: VonDatum - column: Station - column: BisDatum - column: Bett - column: Fall The table should have the title "Bewegungs" und the data must be loaded from the server with the following relative URL: "/StationService/bewegung/station/{id}" Add a HTML table to the view with the following Bett columns: - column: Station - column: Bettnummer - column: IstIntensiv - column: IstIsolation The table should have the title "Betts" und the data must be loaded from the server with the following relative URL: "/StationService/bett/station/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum