Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ParktarifView
Please create a React-JS view called "ParktarifView" for the fields of the Parktarif entity. The ParktarifView must contain the following fields: - name: Beschreibung type: STRING - name: Fahrzeugtyp type: Fahrzeugtyp - name: GrundpreisProStunde type: STRING - name: GueltigBisDatum type: DATE - name: GueltigVonDatum type: DATE - name: IstKostenlos type: BOOL - name: MaxTagespreis type: STRING - name: Name type: STRING - name: NutzungsKategorie type: NutzungsKategorie - name: Parkplatzbereich type: Parkplatzbereich - name: Parkzone type: Parkzone - name: Waehrung type: STRING The data source for the [NutzungsKategorie] select control should be loaded from the relative URL: "/NutzungsKategorieService/nutzungskategorie" (HTTP-GET) The data source for the [Parkzone] select control should be loaded from the relative URL: "/StadtService/parkzone" (HTTP-GET) The data source for the [Fahrzeugtyp] select control should be loaded from the relative URL: "/FahrzeugtypService/fahrzeugtyp" (HTTP-GET) The data source for the [Parkplatzbereich] select control should be loaded from the relative URL: "/ParkplatzbereichService/parkplatzbereich" (HTTP-GET) An existing Parktarif entity should be loaded from the relative URL: "/NutzungsKategorieService/parktarif/{id}" (HTTP-GET) If a new Parktarif entity has been created, the new entity should be posted to the relative URL: "/NutzungsKategorieService/parktarif" (HTTP-POST) If an existing Parktarif entity has been updated, the modified entity should be sent to the relative URL: "/NutzungsKategorieService/parktarif/{id}" (HTTP-PUT) If an existing Parktarif entity has to be deleted, the following relative URL should be called: "/NutzungsKategorieService/parktarif/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tarifzeitraum columns: - column: PreisProStunde - column: Startzeit - column: MaxDauerMinuten - column: Endzeit - column: Parktarif - column: Wochentag The table should have the title "Tarifzeitraums" und the data must be loaded from the server with the following relative URL: "/NutzungsKategorieService/tarifzeitraum/parktarif/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum