Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LeitungswegView
Please create a React-JS view called "LeitungswegView" for the fields of the Leitungsweg entity. The LeitungswegView must contain the following fields: - name: Beschreibung type: STRING - name: EndeAbzweigdose type: Abzweigdose - name: EndeGeraet type: LONG - name: EndeVerteiler type: Verteiler - name: Installationsmethode type: STRING - name: LaengeMeter type: DOUBLE - name: Leitungstyp type: Leitungstyp - name: Routenbeschreibung type: STRING - name: StartAbzweigdose type: Abzweigdose - name: StartGeraet type: LONG - name: StartVerteiler type: Verteiler - name: Stromkreis type: Stromkreis The data source for the [EndeAbzweigdose] select control should be loaded from the relative URL: "/AbzweigdoseService/abzweigdose" (HTTP-GET) The data source for the [StartVerteiler] select control should be loaded from the relative URL: "/StromkreisService/verteiler" (HTTP-GET) The data source for the [EndeVerteiler] select control should be loaded from the relative URL: "/StromkreisService/verteiler" (HTTP-GET) The data source for the [Leitungstyp] select control should be loaded from the relative URL: "/AbzweigdoseService/leitungstyp" (HTTP-GET) The data source for the [StartAbzweigdose] select control should be loaded from the relative URL: "/AbzweigdoseService/abzweigdose" (HTTP-GET) The data source for the [Stromkreis] select control should be loaded from the relative URL: "/StromkreisService/stromkreis" (HTTP-GET) An existing Leitungsweg entity should be loaded from the relative URL: "/AbzweigdoseService/leitungsweg/{id}" (HTTP-GET) If a new Leitungsweg entity has been created, the new entity should be posted to the relative URL: "/AbzweigdoseService/leitungsweg" (HTTP-POST) If an existing Leitungsweg entity has been updated, the modified entity should be sent to the relative URL: "/AbzweigdoseService/leitungsweg/{id}" (HTTP-PUT) If an existing Leitungsweg entity has to be deleted, the following relative URL should be called: "/AbzweigdoseService/leitungsweg/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum