Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TierabwehrmerkmalApp
Please create a React-JS application for the TierabwehrmerkmalModule. The application has to offer the following views for the user interface: 1. BehaelterTierabwehrmerkmalView 2. TierabwehrmerkmalView 3. VerdichtungstechnikView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The BehaelterTierabwehrmerkmalView must contain the following fields: - name: Abfallbehaelter type: Abfallbehaelter - name: Tierabwehrmerkmal type: Tierabwehrmerkmal The data source for the [Abfallbehaelter] select control should be loaded from the relative URL: "/AbfallbehaelterService/abfallbehaelter" (HTTP-GET) The data source for the [Tierabwehrmerkmal] select control should be loaded from the relative URL: "/TierabwehrmerkmalService/tierabwehrmerkmal" (HTTP-GET) An existing BehaelterTierabwehrmerkmal entity should be loaded from the relative URL: "/TierabwehrmerkmalService/behaeltertierabwehrmerkmal/{id}" (HTTP-GET) If a new BehaelterTierabwehrmerkmal entity has been created, the new entity should be posted to the relative URL: "/TierabwehrmerkmalService/behaeltertierabwehrmerkmal" (HTTP-POST) If an existing BehaelterTierabwehrmerkmal entity has been updated, the modified entity should be sent to the relative URL: "/TierabwehrmerkmalService/behaeltertierabwehrmerkmal/{id}" (HTTP-PUT) If an existing BehaelterTierabwehrmerkmal entity has to be deleted, the following relative URL should be called: "/TierabwehrmerkmalService/behaeltertierabwehrmerkmal/{id}" (HTTP-DELETE) 2. The TierabwehrmerkmalView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Tierabwehrmerkmal entity should be loaded from the relative URL: "/TierabwehrmerkmalService/tierabwehrmerkmal/{id}" (HTTP-GET) If a new Tierabwehrmerkmal entity has been created, the new entity should be posted to the relative URL: "/TierabwehrmerkmalService/tierabwehrmerkmal" (HTTP-POST) If an existing Tierabwehrmerkmal entity has been updated, the modified entity should be sent to the relative URL: "/TierabwehrmerkmalService/tierabwehrmerkmal/{id}" (HTTP-PUT) If an existing Tierabwehrmerkmal entity has to be deleted, the following relative URL should be called: "/TierabwehrmerkmalService/tierabwehrmerkmal/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BehaelterTierabwehrmerkmal columns: - column: Tierabwehrmerkmal - column: Abfallbehaelter The table should have the title "BehaelterTierabwehrmerkmals" und the data must be loaded from the server with the following relative URL: "/TierabwehrmerkmalService/behaeltertierabwehrmerkmal/tierabwehrmerkmal/{id}" 3. The VerdichtungstechnikView must contain the following fields: - name: Beschreibung type: STRING - name: IstSolarintegriert type: BOOL - name: Name type: STRING - name: Verdichtungsrate type: STRING An existing Verdichtungstechnik entity should be loaded from the relative URL: "/TierabwehrmerkmalService/verdichtungstechnik/{id}" (HTTP-GET) If a new Verdichtungstechnik entity has been created, the new entity should be posted to the relative URL: "/TierabwehrmerkmalService/verdichtungstechnik" (HTTP-POST) If an existing Verdichtungstechnik entity has been updated, the modified entity should be sent to the relative URL: "/TierabwehrmerkmalService/verdichtungstechnik/{id}" (HTTP-PUT) If an existing Verdichtungstechnik entity has to be deleted, the following relative URL should be called: "/TierabwehrmerkmalService/verdichtungstechnik/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Abfallbehaelter columns: - column: Energiequelle - column: VolumenLiter - column: IstEinweg - column: IstInnenbereich - column: Standort - column: IstOeffentlich - column: HatDeckel - column: IstSolarbetrieben - column: Name - column: IstUnterflur - column: Beschreibung - column: AusserbetriebnahmeDatum - column: Material - column: Sammelsystem - column: HatVerdichter - column: Verdichtungstechnik - column: Behaeltertyp - column: InbetriebnahmeDatum The table should have the title "Abfallbehaelters" und the data must be loaded from the server with the following relative URL: "/AbfallbehaelterService/abfallbehaelter/verdichtungstechnik/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum