Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserTerminalView
Please create a React-JS view called "UserTerminalView" for the fields of the UserTerminal entity. The UserTerminalView must contain the following fields: - name: AntennaType type: STRING - name: DiameterCm type: DOUBLE - name: GNSSReceiverCount type: INT - name: HasMotors type: BOOL - name: Model type: STRING - name: Notes type: STRING - name: ProductionLocation type: STRING - name: ProductionStart type: DATE An existing UserTerminal entity should be loaded from the relative URL: "/UserTerminalService/userterminal/{id}" (HTTP-GET) If a new UserTerminal entity has been created, the new entity should be posted to the relative URL: "/UserTerminalService/userterminal" (HTTP-POST) If an existing UserTerminal entity has been updated, the modified entity should be sent to the relative URL: "/UserTerminalService/userterminal/{id}" (HTTP-PUT) If an existing UserTerminal entity has to be deleted, the following relative URL should be called: "/UserTerminalService/userterminal/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CustomerUserTerminal columns: - column: Customer - column: UserTerminal The table should have the title "CustomerUserTerminals" und the data must be loaded from the server with the following relative URL: "/UserTerminalService/customeruserterminal/userterminal/{id}" Add a HTML table to the view with the following RegulatoryApprovalUserTerminal columns: - column: RegulatoryApproval - column: UserTerminal The table should have the title "RegulatoryApprovalUserTerminals" und the data must be loaded from the server with the following relative URL: "/RegulatoryApprovalService/regulatoryapprovaluserterminal/userterminal/{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/userterminal/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint