Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
MissionView
Please create a React-JS view called "MissionView" for the fields of the Mission entity. The MissionView must contain the following fields: - name: Beschreibung type: STRING - name: EndDatum type: DATE - name: GastLand type: Land - name: InternationaleOrganisation type: InternationaleOrganisation - name: MissionTyp type: STRING - name: Name type: STRING - name: StartDatum type: DATE The data source for the [GastLand] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) The data source for the [InternationaleOrganisation] select control should be loaded from the relative URL: "/InternationaleOrganisationService/internationaleorganisation" (HTTP-GET) An existing Mission entity should be loaded from the relative URL: "/InternationaleOrganisationService/mission/{id}" (HTTP-GET) If a new Mission entity has been created, the new entity should be posted to the relative URL: "/InternationaleOrganisationService/mission" (HTTP-POST) If an existing Mission entity has been updated, the modified entity should be sent to the relative URL: "/InternationaleOrganisationService/mission/{id}" (HTTP-PUT) If an existing Mission entity has to be deleted, the following relative URL should be called: "/InternationaleOrganisationService/mission/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MissionTeilnahme columns: - column: Mission - column: PersonalAnzahl - column: Polizei - column: Rolle - column: Notizen The table should have the title "MissionTeilnahmes" und the data must be loaded from the server with the following relative URL: "/PolizeiService/missionteilnahme/mission/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum