Overview
Summary
Contact
Donate
Imprint
Prompt for the
FrequencyBandView
Please create a React-JS view called "FrequencyBandView" for the fields of the FrequencyBand entity. The FrequencyBandView must contain the following fields: - name: BandName type: STRING - name: FrequencyEndGHz type: DOUBLE - name: FrequencyStartGHz type: DOUBLE - name: UsageType type: STRING An existing FrequencyBand entity should be loaded from the relative URL: "/FrequencyBandService/frequencyband/{id}" (HTTP-GET) If a new FrequencyBand entity has been created, the new entity should be posted to the relative URL: "/FrequencyBandService/frequencyband" (HTTP-POST) If an existing FrequencyBand entity has been updated, the modified entity should be sent to the relative URL: "/FrequencyBandService/frequencyband/{id}" (HTTP-PUT) If an existing FrequencyBand entity has to be deleted, the following relative URL should be called: "/FrequencyBandService/frequencyband/{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/frequencyband/{id}" Add a HTML table to the view with the following SatelliteFrequencyBand columns: - column: FrequencyBand - column: Satellite The table should have the title "SatelliteFrequencyBands" und the data must be loaded from the server with the following relative URL: "/FrequencyBandService/satellitefrequencyband/frequencyband/{id}" Add a HTML table to the view with the following UserTerminalFrequencyBand columns: - column: FrequencyBand - column: UserTerminal The table should have the title "UserTerminalFrequencyBands" und the data must be loaded from the server with the following relative URL: "/FrequencyBandService/userterminalfrequencyband/frequencyband/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint