Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KrankenhausView
Please create a React-JS view called "KrankenhausView" for the fields of the Krankenhaus entity. The KrankenhausView must contain the following fields: - name: BettenGeplant type: LONG - name: BettenTatsaechlich type: LONG - name: Bundesland type: Bundesland - name: Gruendungsjahr type: LONG - name: IstUniversitaetsklinikum type: BOOL - name: KrankenhausArt type: KrankenhausArt - name: Kurzname type: STRING - name: Land type: Land - name: Name type: STRING - name: Postleitzahl type: STRING - name: Stadt type: Stadt - name: Strasse type: STRING - name: Traeger type: Traeger - name: TraegerArt type: TraegerArt - name: Versorgungsstufe type: STRING The data source for the [TraegerArt] select control should be loaded from the relative URL: "/TraegerArtService/traegerart" (HTTP-GET) The data source for the [KrankenhausArt] select control should be loaded from the relative URL: "/KrankenhausArtService/krankenhausart" (HTTP-GET) The data source for the [Bundesland] select control should be loaded from the relative URL: "/KrankenhausService/bundesland" (HTTP-GET) The data source for the [Stadt] select control should be loaded from the relative URL: "/TraegerArtService/stadt" (HTTP-GET) The data source for the [Traeger] select control should be loaded from the relative URL: "/TraegerArtService/traeger" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/KrankenhausService/land" (HTTP-GET) An existing Krankenhaus entity should be loaded from the relative URL: "/KrankenhausService/krankenhaus/{id}" (HTTP-GET) If a new Krankenhaus entity has been created, the new entity should be posted to the relative URL: "/KrankenhausService/krankenhaus" (HTTP-POST) If an existing Krankenhaus entity has been updated, the modified entity should be sent to the relative URL: "/KrankenhausService/krankenhaus/{id}" (HTTP-PUT) If an existing Krankenhaus entity has to be deleted, the following relative URL should be called: "/KrankenhausService/krankenhaus/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Notaufnahme columns: - column: Name - column: Krankenhaus - column: HatHelipad - column: IstTraumaZentrum The table should have the title "Notaufnahmes" und the data must be loaded from the server with the following relative URL: "/IcdService/notaufnahme/krankenhaus/{id}" Add a HTML table to the view with the following Ambulanz columns: - column: Fachgebiet - column: Name - column: Krankenhaus The table should have the title "Ambulanzs" und the data must be loaded from the server with the following relative URL: "/KrankenhausArtService/ambulanz/krankenhaus/{id}" Add a HTML table to the view with the following Institut columns: - column: InstitutArt - column: Krankenhaus - column: Name The table should have the title "Instituts" und the data must be loaded from the server with the following relative URL: "/IcdService/institut/krankenhaus/{id}" Add a HTML table to the view with the following Aufnahme columns: - column: AufnahmeDatum - column: EntlassZiel - column: Patient - column: UeberwiesenVon - column: AufnahmeArt - column: Krankenhaus - column: IstNotfall - column: EntlassDatum The table should have the title "Aufnahmes" und the data must be loaded from the server with the following relative URL: "/FallService/aufnahme/krankenhaus/{id}" Add a HTML table to the view with the following Abteilung columns: - column: IstBettenfuehrend - column: IstDiagnostisch - column: Name - column: Krankenhaus - column: AbteilungArt The table should have the title "Abteilungs" und the data must be loaded from the server with the following relative URL: "/AbteilungService/abteilung/krankenhaus/{id}" Add a HTML table to the view with the following Mitarbeiter columns: - column: IstPflege - column: Einstellungsdatum - column: MitarbeiterRolle - column: Krankenhaus - column: Nachname - column: Vorname - column: IstArzt - column: Beruf The table should have the title "Mitarbeiters" und the data must be loaded from the server with the following relative URL: "/MitarbeiterRolleService/mitarbeiter/krankenhaus/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum