Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
WohnungView
Please create a React-JS view called "WohnungView" for the fields of the Wohnung entity. The WohnungView must contain the following fields: - name: Beschreibung type: STRING - name: Etage type: STRING - name: FlaecheQm type: STRING - name: IstBarrierefrei type: BOOL - name: IstEigentum type: BOOL - name: IstMietobjekt type: BOOL - name: IstRollstuhlgerecht type: BOOL - name: Wohnanlage type: Wohnanlage - name: Wohnungsnummer type: STRING The data source for the [Wohnanlage] select control should be loaded from the relative URL: "/TraegerorganisationService/wohnanlage" (HTTP-GET) An existing Wohnung entity should be loaded from the relative URL: "/WohnungService/wohnung/{id}" (HTTP-GET) If a new Wohnung entity has been created, the new entity should be posted to the relative URL: "/WohnungService/wohnung" (HTTP-POST) If an existing Wohnung entity has been updated, the modified entity should be sent to the relative URL: "/WohnungService/wohnung/{id}" (HTTP-PUT) If an existing Wohnung entity has to be deleted, the following relative URL should be called: "/WohnungService/wohnung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Vertrag columns: - column: Vertragstyp - column: Traegerorganisation - column: Enddatum - column: Wohnung - column: Bewohner - column: Wohnform - column: Startdatum - column: Notizen The table should have the title "Vertrags" und the data must be loaded from the server with the following relative URL: "/TraegerorganisationService/vertrag/wohnung/{id}" Add a HTML table to the view with the following Wohnungsanpassung columns: - column: Anpassungsdatum - column: Foerderprogramm - column: Wohnung - column: Anpassungsart - column: Beschreibung The table should have the title "Wohnungsanpassungs" und the data must be loaded from the server with the following relative URL: "/WohnungService/wohnungsanpassung/wohnung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum