Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ParkregelView
Please create a React-JS view called "ParkregelView" for the fields of the Parkregel entity. The ParkregelView must contain the following fields: - name: BerechtigungErforderlich type: BOOL - name: GueltigBisDatum type: DATE - name: GueltigBisZeit type: STRING - name: GueltigVonDatum type: DATE - name: GueltigVonZeit type: STRING - name: Hinweise type: STRING - name: MaxDauerMinuten type: INT - name: Name type: STRING - name: NutzungsKategorie type: NutzungsKategorie - name: Parkplatzbereich type: Parkplatzbereich - name: ParkscheibeErforderlich type: BOOL - name: Parkzone type: Parkzone - name: Rechtsgrundlage type: STRING - name: TicketErforderlich type: BOOL 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 [Parkplatzbereich] select control should be loaded from the relative URL: "/ParkplatzbereichService/parkplatzbereich" (HTTP-GET) An existing Parkregel entity should be loaded from the relative URL: "/NutzungsKategorieService/parkregel/{id}" (HTTP-GET) If a new Parkregel entity has been created, the new entity should be posted to the relative URL: "/NutzungsKategorieService/parkregel" (HTTP-POST) If an existing Parkregel entity has been updated, the modified entity should be sent to the relative URL: "/NutzungsKategorieService/parkregel/{id}" (HTTP-PUT) If an existing Parkregel entity has to be deleted, the following relative URL should be called: "/NutzungsKategorieService/parkregel/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum