Overview
Summary
Contact
Donate
Imprint
Prompt for the
StarlinkNetworkView
Please create a React-JS view called "StarlinkNetworkView" for the fields of the StarlinkNetwork entity. The StarlinkNetworkView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: Name type: STRING - name: Notes type: STRING - name: StartDate type: DATE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing StarlinkNetwork entity should be loaded from the relative URL: "/StarlinkNetworkService/starlinknetwork/{id}" (HTTP-GET) If a new StarlinkNetwork entity has been created, the new entity should be posted to the relative URL: "/StarlinkNetworkService/starlinknetwork" (HTTP-POST) If an existing StarlinkNetwork entity has been updated, the modified entity should be sent to the relative URL: "/StarlinkNetworkService/starlinknetwork/{id}" (HTTP-PUT) If an existing StarlinkNetwork entity has to be deleted, the following relative URL should be called: "/StarlinkNetworkService/starlinknetwork/{id}" (HTTP-DELETE) Add a HTML table to the view with the following StarlinkSatellite columns: - column: Plane - column: StarlinkNetwork - column: Notes - column: Shell - column: Slot - column: Satellite - column: Block The table should have the title "StarlinkSatellites" und the data must be loaded from the server with the following relative URL: "/StarlinkNetworkService/starlinksatellite/starlinknetwork/{id}" Add a HTML table to the view with the following StarlinkUserTerminal columns: - column: StarlinkNetwork - column: Notes - column: ProductionFacility - column: HardwareVersion - column: ModelName The table should have the title "StarlinkUserTerminals" und the data must be loaded from the server with the following relative URL: "/FacilityService/starlinkuserterminal/starlinknetwork/{id}" Add a HTML table to the view with the following StarlinkMarketAvailability columns: - column: AvailableFrom - column: StarlinkNetwork - column: StarlinkMarket - column: AvailableTo - column: Notes The table should have the title "StarlinkMarketAvailabilitys" und the data must be loaded from the server with the following relative URL: "/StarlinkNetworkService/starlinkmarketavailability/starlinknetwork/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint