Overview
Summary
Contact
Donate
Imprint
Prompt for the
CompanyView
Please create a React-JS view called "CompanyView" for the fields of the Company entity. The CompanyView must contain the following fields: - name: Country type: STRING - name: FoundedYear type: LONG - name: HeadquartersCity type: STRING - name: Name type: STRING - name: Website type: STRING An existing Company entity should be loaded from the relative URL: "/CompanyService/company/{id}" (HTTP-GET) If a new Company entity has been created, the new entity should be posted to the relative URL: "/CompanyService/company" (HTTP-POST) If an existing Company entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/company/{id}" (HTTP-PUT) If an existing Company entity has to be deleted, the following relative URL should be called: "/CompanyService/company/{id}" (HTTP-DELETE) Add a HTML table to the view with the following DataBreach columns: - column: Name - column: Description - column: IncidentDate - column: ThirdPartyVendor - column: RecordsAffected - column: RansomDemanded - column: Company The table should have the title "DataBreachs" und the data must be loaded from the server with the following relative URL: "/SupportVendorService/databreach/company/{id}" Add a HTML table to the view with the following PartnerIntegration columns: - column: EndDate - column: PartnerName - column: Company - column: Platform - column: StartDate - column: Description The table should have the title "PartnerIntegrations" und the data must be loaded from the server with the following relative URL: "/CompanyService/partnerintegration/company/{id}" Add a HTML table to the view with the following Application columns: - column: ProgrammingLanguage - column: License - column: Type - column: Platform - column: Website - column: Company - column: Name - column: ReleaseDate The table should have the title "Applications" und the data must be loaded from the server with the following relative URL: "/CompanyService/application/company/{id}" Add a HTML table to the view with the following SupportSystem columns: - column: Description - column: Name - column: Company - column: Vendor - column: IsThirdParty The table should have the title "SupportSystems" und the data must be loaded from the server with the following relative URL: "/CompanyService/supportsystem/company/{id}" Add a HTML table to the view with the following InvestmentRound columns: - column: AmountUsd - column: Company - column: ValuationUsd - column: RoundType - column: LeadInvestor - column: Date The table should have the title "InvestmentRounds" und the data must be loaded from the server with the following relative URL: "/CompanyService/investmentround/company/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint