Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
StromkreisView
Please create a React-JS view called "StromkreisView" for the fields of the Stromkreis entity. The StromkreisView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING - name: Nennspannung type: STRING - name: NennstromA type: DOUBLE - name: Nummer type: STRING - name: Nutzungseinheit type: Nutzungseinheit - name: Phasen type: LONG - name: Schutzorgan type: Schutzorgan - name: Stromkreisart type: STRING - name: Verteiler type: Verteiler The data source for the [Nutzungseinheit] select control should be loaded from the relative URL: "/NutzungseinheitService/nutzungseinheit" (HTTP-GET) The data source for the [Schutzorgan] select control should be loaded from the relative URL: "/StromkreisService/schutzorgan" (HTTP-GET) The data source for the [Verteiler] select control should be loaded from the relative URL: "/StromkreisService/verteiler" (HTTP-GET) An existing Stromkreis entity should be loaded from the relative URL: "/StromkreisService/stromkreis/{id}" (HTTP-GET) If a new Stromkreis entity has been created, the new entity should be posted to the relative URL: "/StromkreisService/stromkreis" (HTTP-POST) If an existing Stromkreis entity has been updated, the modified entity should be sent to the relative URL: "/StromkreisService/stromkreis/{id}" (HTTP-PUT) If an existing Stromkreis entity has to be deleted, the following relative URL should be called: "/StromkreisService/stromkreis/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verbraucher columns: - column: LeistungW - column: Beschreibung - column: SpannungV - column: Installationsgeraet - column: Anschlussart - column: Name - column: Stromkreis - column: Kategorie The table should have the title "Verbrauchers" und the data must be loaded from the server with the following relative URL: "/NutzungseinheitService/verbraucher/stromkreis/{id}" Add a HTML table to the view with the following Dokumentation columns: - column: Stromkreis - column: Beschreibung - column: DateiReferenz - column: Dokumenttyp - column: Titel - column: Nutzungseinheit - column: Erstellungsdatum - column: Gebaeude The table should have the title "Dokumentations" und the data must be loaded from the server with the following relative URL: "/GebaeudeService/dokumentation/stromkreis/{id}" Add a HTML table to the view with the following Leitungsweg columns: - column: Leitungstyp - column: LaengeMeter - column: EndeAbzweigdose - column: StartAbzweigdose - column: EndeGeraet - column: StartVerteiler - column: Routenbeschreibung - column: Installationsmethode - column: EndeVerteiler - column: Beschreibung - column: StartGeraet - column: Stromkreis The table should have the title "Leitungswegs" und the data must be loaded from the server with the following relative URL: "/AbzweigdoseService/leitungsweg/stromkreis/{id}" Add a HTML table to the view with the following Installationsgeraet columns: - column: Abzweigdose - column: Geraetetyp - column: Stromkreis - column: Kennzeichnung - column: Installationsmethode - column: Beschreibung - column: Installationszone - column: Raum - column: HoeheCm - column: PositionBeschreibung The table should have the title "Installationsgeraets" und the data must be loaded from the server with the following relative URL: "/AbzweigdoseService/installationsgeraet/stromkreis/{id}" Add a HTML table to the view with the following StromkreisSchutzmassnahme columns: - column: Stromkreis - column: Beschreibung - column: Schutzmassnahme The table should have the title "StromkreisSchutzmassnahmes" und the data must be loaded from the server with the following relative URL: "/NormService/stromkreisschutzmassnahme/stromkreis/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum