Overview
Summary
Contact
Donate
Imprint
Prompt for the
GroundStationView
Please create a React-JS view called "GroundStationView" for the fields of the GroundStation entity. The GroundStationView must contain the following fields: - name: Country type: STRING - name: FrequencyRange type: STRING - name: Latitude type: DOUBLE - name: Longitude type: DOUBLE - name: Name type: STRING - name: OperationalSince type: DATE - name: Region type: STRING An existing GroundStation entity should be loaded from the relative URL: "/GroundStationService/groundstation/{id}" (HTTP-GET) If a new GroundStation entity has been created, the new entity should be posted to the relative URL: "/GroundStationService/groundstation" (HTTP-POST) If an existing GroundStation entity has been updated, the modified entity should be sent to the relative URL: "/GroundStationService/groundstation/{id}" (HTTP-PUT) If an existing GroundStation entity has to be deleted, the following relative URL should be called: "/GroundStationService/groundstation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GroundStationFrequencyBand columns: - column: GroundStation - column: FrequencyBand The table should have the title "GroundStationFrequencyBands" und the data must be loaded from the server with the following relative URL: "/GroundStationService/groundstationfrequencyband/groundstation/{id}" Add a HTML table to the view with the following RegulatoryApprovalGroundStation columns: - column: GroundStation - column: RegulatoryApproval The table should have the title "RegulatoryApprovalGroundStations" und the data must be loaded from the server with the following relative URL: "/RegulatoryApprovalService/regulatoryapprovalgroundstation/groundstation/{id}" Add a HTML table to the view with the following TestSatelliteGroundStation columns: - column: TestSatellite - column: GroundStation The table should have the title "TestSatelliteGroundStations" und the data must be loaded from the server with the following relative URL: "/GroundStationService/testsatellitegroundstation/groundstation/{id}" Add a HTML table to the view with the following SatelliteGroundStation columns: - column: Satellite - column: GroundStation The table should have the title "SatelliteGroundStations" und the data must be loaded from the server with the following relative URL: "/SatelliteService/satellitegroundstation/groundstation/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint