Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandApp
Please create a React-JS application for the LandModule. The application has to offer the following views for the user interface: 1. LandView 2. OrganisationView 3. OrganisationsAnlagenRolleView 4. RegionView 5. StadtView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The LandView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING - name: Notizen type: STRING An existing Land entity should be loaded from the relative URL: "/LandService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/LandService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/LandService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/LandService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gasnutzung columns: - column: Land - column: Sektor - column: Gasart - column: Jahr - column: VolumenBcm - column: Notizen The table should have the title "Gasnutzungs" und the data must be loaded from the server with the following relative URL: "/GasartService/gasnutzung/land/{id}" Add a HTML table to the view with the following Gasquelle columns: - column: Endjahr - column: Gasart - column: Quellentyp - column: Startjahr - column: Name - column: Land - column: Notizen - column: StandortStadt The table should have the title "Gasquelles" und the data must be loaded from the server with the following relative URL: "/GasartService/gasquelle/land/{id}" Add a HTML table to the view with the following Organisation columns: - column: Land - column: Notizen - column: Gruendungsjahr - column: Name - column: Aufloesungsjahr - column: Organisationsart - column: SitzStadt The table should have the title "Organisations" und the data must be loaded from the server with the following relative URL: "/LandService/organisation/land/{id}" Add a HTML table to the view with the following Person columns: - column: Vollname - column: NationalitaetLand - column: Notizen - column: Geburtsjahr - column: Todesjahr The table should have the title "Persons" und the data must be loaded from the server with the following relative URL: "/PersonService/person/nationalitaetland/{id}" Add a HTML table to the view with the following Anlage columns: - column: Stadt - column: Startjahr - column: Land - column: Name - column: Notizen - column: Anlagetyp - column: BetreiberOrganisation - column: Endjahr The table should have the title "Anlages" und the data must be loaded from the server with the following relative URL: "/AnlageService/anlage/land/{id}" Add a HTML table to the view with the following Regulierung columns: - column: Name - column: Jahr - column: Beschreibung - column: Land The table should have the title "Regulierungs" und the data must be loaded from the server with the following relative URL: "/PipelineService/regulierung/land/{id}" Add a HTML table to the view with the following Ereignis columns: - column: Land - column: Beschreibung - column: Ereignisart - column: Krieg - column: Wirtschaftskrise - column: Name - column: Tag - column: Monat - column: Jahr - column: Stadt The table should have the title "Ereigniss" und the data must be loaded from the server with the following relative URL: "/AnlageService/ereignis/land/{id}" Add a HTML table to the view with the following Region columns: - column: Land - column: Notizen - column: Name The table should have the title "Regions" und the data must be loaded from the server with the following relative URL: "/LandService/region/land/{id}" Add a HTML table to the view with the following Gasimport columns: - column: VolumenBcm - column: ExportLand - column: Notizen - column: Gasart - column: Jahr - column: PipelineRoute - column: ImportLand The table should have the title "Gasimports" und the data must be loaded from the server with the following relative URL: "/GasartService/gasimport/exportland/{id}" Add a HTML table to the view with the following Gasimport columns: - column: VolumenBcm - column: ExportLand - column: Notizen - column: Gasart - column: Jahr - column: PipelineRoute - column: ImportLand The table should have the title "Gasimports" und the data must be loaded from the server with the following relative URL: "/GasartService/gasimport/importland/{id}" Add a HTML table to the view with the following Stadt columns: - column: EinwohnerSchaetzung - column: Region - column: Notizen - column: Land - column: Name The table should have the title "Stadts" und the data must be loaded from the server with the following relative URL: "/LandService/stadt/land/{id}" Add a HTML table to the view with the following Pipeline columns: - column: Endjahr - column: HerkunftsLand - column: ZielLand - column: HauptGasart - column: Name - column: Startjahr - column: LaengeKm - column: Notizen The table should have the title "Pipelines" und the data must be loaded from the server with the following relative URL: "/PipelineService/pipeline/zielland/{id}" Add a HTML table to the view with the following Pipeline columns: - column: Endjahr - column: HerkunftsLand - column: ZielLand - column: HauptGasart - column: Name - column: Startjahr - column: LaengeKm - column: Notizen The table should have the title "Pipelines" und the data must be loaded from the server with the following relative URL: "/PipelineService/pipeline/herkunftsland/{id}" Add a HTML table to the view with the following Gasnetz columns: - column: Notizen - column: Land - column: Endjahr - column: Region - column: Startjahr - column: BetreiberOrganisation - column: Name The table should have the title "Gasnetzs" und the data must be loaded from the server with the following relative URL: "/GasnetzService/gasnetz/land/{id}" 2. The OrganisationView must contain the following fields: - name: Aufloesungsjahr type: LONG - name: Gruendungsjahr type: LONG - name: Land type: Land - name: Name type: STRING - name: Notizen type: STRING - name: Organisationsart type: STRING - name: SitzStadt type: Stadt The data source for the [SitzStadt] select control should be loaded from the relative URL: "/LandService/stadt" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Organisation entity should be loaded from the relative URL: "/LandService/organisation/{id}" (HTTP-GET) If a new Organisation entity has been created, the new entity should be posted to the relative URL: "/LandService/organisation" (HTTP-POST) If an existing Organisation entity has been updated, the modified entity should be sent to the relative URL: "/LandService/organisation/{id}" (HTTP-PUT) If an existing Organisation entity has to be deleted, the following relative URL should be called: "/LandService/organisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Anlage columns: - column: Stadt - column: Startjahr - column: Land - column: Name - column: Notizen - column: Anlagetyp - column: BetreiberOrganisation - column: Endjahr The table should have the title "Anlages" und the data must be loaded from the server with the following relative URL: "/AnlageService/anlage/betreiberorganisation/{id}" Add a HTML table to the view with the following EreignisBeteiligung columns: - column: Notizen - column: Person - column: Organisation - column: Pipeline - column: Rolle - column: Anlage - column: Ereignis The table should have the title "EreignisBeteiligungs" und the data must be loaded from the server with the following relative URL: "/AnlageService/ereignisbeteiligung/organisation/{id}" Add a HTML table to the view with the following OrganisationMarktgebiet columns: - column: Marktgebiet - column: Notizen - column: Organisation - column: Startjahr - column: Endjahr - column: Rolle The table should have the title "OrganisationMarktgebiets" und the data must be loaded from the server with the following relative URL: "/MarktgebietService/organisationmarktgebiet/organisation/{id}" Add a HTML table to the view with the following OrganisationsAnlagenRolle columns: - column: Anlage - column: Organisation - column: Rolle - column: Endjahr - column: Startjahr - column: Notizen The table should have the title "OrganisationsAnlagenRolles" und the data must be loaded from the server with the following relative URL: "/LandService/organisationsanlagenrolle/organisation/{id}" Add a HTML table to the view with the following Vertrag columns: - column: Name - column: Waehrung - column: VolumenBcm - column: Vertragsdatum - column: Startjahr - column: WertBetrag - column: VerkaeuferOrganisation - column: Endjahr - column: Notizen - column: Vertragsart - column: KaeuferOrganisation The table should have the title "Vertrags" und the data must be loaded from the server with the following relative URL: "/GasnetzService/vertrag/kaeuferorganisation/{id}" Add a HTML table to the view with the following Vertrag columns: - column: Name - column: Waehrung - column: VolumenBcm - column: Vertragsdatum - column: Startjahr - column: WertBetrag - column: VerkaeuferOrganisation - column: Endjahr - column: Notizen - column: Vertragsart - column: KaeuferOrganisation The table should have the title "Vertrags" und the data must be loaded from the server with the following relative URL: "/GasnetzService/vertrag/verkaeuferorganisation/{id}" Add a HTML table to the view with the following OrganisationsBeteiligung columns: - column: TochterOrganisation - column: AnteilProzent - column: Endjahr - column: MutterOrganisation - column: Startjahr - column: Notizen The table should have the title "OrganisationsBeteiligungs" und the data must be loaded from the server with the following relative URL: "/MarktgebietService/organisationsbeteiligung/tochterorganisation/{id}" Add a HTML table to the view with the following OrganisationsBeteiligung columns: - column: TochterOrganisation - column: AnteilProzent - column: Endjahr - column: MutterOrganisation - column: Startjahr - column: Notizen The table should have the title "OrganisationsBeteiligungs" und the data must be loaded from the server with the following relative URL: "/MarktgebietService/organisationsbeteiligung/mutterorganisation/{id}" Add a HTML table to the view with the following Gasnetz columns: - column: Notizen - column: Land - column: Endjahr - column: Region - column: Startjahr - column: BetreiberOrganisation - column: Name The table should have the title "Gasnetzs" und the data must be loaded from the server with the following relative URL: "/GasnetzService/gasnetz/betreiberorganisation/{id}" 3. The OrganisationsAnlagenRolleView must contain the following fields: - name: Anlage type: Anlage - name: Endjahr type: LONG - name: Notizen type: STRING - name: Organisation type: Organisation - name: Rolle type: STRING - name: Startjahr type: LONG The data source for the [Organisation] select control should be loaded from the relative URL: "/LandService/organisation" (HTTP-GET) The data source for the [Anlage] select control should be loaded from the relative URL: "/AnlageService/anlage" (HTTP-GET) An existing OrganisationsAnlagenRolle entity should be loaded from the relative URL: "/LandService/organisationsanlagenrolle/{id}" (HTTP-GET) If a new OrganisationsAnlagenRolle entity has been created, the new entity should be posted to the relative URL: "/LandService/organisationsanlagenrolle" (HTTP-POST) If an existing OrganisationsAnlagenRolle entity has been updated, the modified entity should be sent to the relative URL: "/LandService/organisationsanlagenrolle/{id}" (HTTP-PUT) If an existing OrganisationsAnlagenRolle entity has to be deleted, the following relative URL should be called: "/LandService/organisationsanlagenrolle/{id}" (HTTP-DELETE) 4. The RegionView must contain the following fields: - name: Land type: Land - name: Name type: STRING - name: Notizen type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Region entity should be loaded from the relative URL: "/LandService/region/{id}" (HTTP-GET) If a new Region entity has been created, the new entity should be posted to the relative URL: "/LandService/region" (HTTP-POST) If an existing Region entity has been updated, the modified entity should be sent to the relative URL: "/LandService/region/{id}" (HTTP-PUT) If an existing Region entity has to be deleted, the following relative URL should be called: "/LandService/region/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Stadt columns: - column: EinwohnerSchaetzung - column: Region - column: Notizen - column: Land - column: Name The table should have the title "Stadts" und the data must be loaded from the server with the following relative URL: "/LandService/stadt/region/{id}" Add a HTML table to the view with the following Gasnetz columns: - column: Notizen - column: Land - column: Endjahr - column: Region - column: Startjahr - column: BetreiberOrganisation - column: Name The table should have the title "Gasnetzs" und the data must be loaded from the server with the following relative URL: "/GasnetzService/gasnetz/region/{id}" 5. The StadtView must contain the following fields: - name: EinwohnerSchaetzung type: LONG - name: Land type: Land - name: Name type: STRING - name: Notizen type: STRING - name: Region type: Region The data source for the [Region] select control should be loaded from the relative URL: "/LandService/region" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Stadt entity should be loaded from the relative URL: "/LandService/stadt/{id}" (HTTP-GET) If a new Stadt entity has been created, the new entity should be posted to the relative URL: "/LandService/stadt" (HTTP-POST) If an existing Stadt entity has been updated, the modified entity should be sent to the relative URL: "/LandService/stadt/{id}" (HTTP-PUT) If an existing Stadt entity has to be deleted, the following relative URL should be called: "/LandService/stadt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gasquelle columns: - column: Endjahr - column: Gasart - column: Quellentyp - column: Startjahr - column: Name - column: Land - column: Notizen - column: StandortStadt The table should have the title "Gasquelles" und the data must be loaded from the server with the following relative URL: "/GasartService/gasquelle/standortstadt/{id}" Add a HTML table to the view with the following Organisation columns: - column: Land - column: Notizen - column: Gruendungsjahr - column: Name - column: Aufloesungsjahr - column: Organisationsart - column: SitzStadt The table should have the title "Organisations" und the data must be loaded from the server with the following relative URL: "/LandService/organisation/sitzstadt/{id}" Add a HTML table to the view with the following Anlage columns: - column: Stadt - column: Startjahr - column: Land - column: Name - column: Notizen - column: Anlagetyp - column: BetreiberOrganisation - column: Endjahr The table should have the title "Anlages" und the data must be loaded from the server with the following relative URL: "/AnlageService/anlage/stadt/{id}" Add a HTML table to the view with the following Ereignis columns: - column: Land - column: Beschreibung - column: Ereignisart - column: Krieg - column: Wirtschaftskrise - column: Name - column: Tag - column: Monat - column: Jahr - column: Stadt The table should have the title "Ereigniss" und the data must be loaded from the server with the following relative URL: "/AnlageService/ereignis/stadt/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum