Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
CarsharingOrganisationApp
Please create a React-JS application for the CarsharingOrganisationModule. The application has to offer the following views for the user interface: 1. CarsharingOrganisationView 2. FlotteView 3. IntermodaleKooperationView 4. OepnvBetreiberView 5. StadtView 6. VerbandsmitgliedschaftView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 6 views are defined below. 1. The CarsharingOrganisationView must contain the following fields: - name: Aktiv type: BOOL - name: FreeFloating type: BOOL - name: Geschaeftsmodell type: Geschaeftsmodell - name: Gruendungsjahr type: LONG - name: Kombinationsmodell type: BOOL - name: Name type: STRING - name: Organisationstyp type: Organisationstyp - name: Rechtsform type: STRING - name: SitzStadt type: Stadt - name: Stationaer type: BOOL - name: Webseite type: STRING The data source for the [SitzStadt] select control should be loaded from the relative URL: "/CarsharingOrganisationService/stadt" (HTTP-GET) The data source for the [Geschaeftsmodell] select control should be loaded from the relative URL: "/GeschaeftsmodellService/geschaeftsmodell" (HTTP-GET) The data source for the [Organisationstyp] select control should be loaded from the relative URL: "/OrganisationstypService/organisationstyp" (HTTP-GET) An existing CarsharingOrganisation entity should be loaded from the relative URL: "/CarsharingOrganisationService/carsharingorganisation/{id}" (HTTP-GET) If a new CarsharingOrganisation entity has been created, the new entity should be posted to the relative URL: "/CarsharingOrganisationService/carsharingorganisation" (HTTP-POST) If an existing CarsharingOrganisation entity has been updated, the modified entity should be sent to the relative URL: "/CarsharingOrganisationService/carsharingorganisation/{id}" (HTTP-PUT) If an existing CarsharingOrganisation entity has to be deleted, the following relative URL should be called: "/CarsharingOrganisationService/carsharingorganisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verbandsmitgliedschaft columns: - column: Mitgliedsart - column: CarsharingOrganisation - column: MitgliedSeit - column: CarsharingVerband The table should have the title "Verbandsmitgliedschafts" und the data must be loaded from the server with the following relative URL: "/CarsharingOrganisationService/verbandsmitgliedschaft/carsharingorganisation/{id}" Add a HTML table to the view with the following Rechnung columns: - column: Nutzer - column: CarsharingOrganisation - column: ZeitraumEnde - column: Status - column: Gesamtbetrag - column: ZeitraumStart - column: Rechnungsnummer - column: AusgestelltAm The table should have the title "Rechnungs" und the data must be loaded from the server with the following relative URL: "/RechnungService/rechnung/carsharingorganisation/{id}" Add a HTML table to the view with the following Flotte columns: - column: ElektroFokus - column: GeplanteFahrzeuge - column: Beschreibung - column: Name - column: CarsharingOrganisation The table should have the title "Flottes" und the data must be loaded from the server with the following relative URL: "/CarsharingOrganisationService/flotte/carsharingorganisation/{id}" Add a HTML table to the view with the following Callcenter columns: - column: CarsharingOrganisation - column: Name - column: Zeitzone - column: Telefonnummer The table should have the title "Callcenters" und the data must be loaded from the server with the following relative URL: "/TarifService/callcenter/carsharingorganisation/{id}" Add a HTML table to the view with the following FlughafenCarsharingAnlage columns: - column: Zusatzgebuehr - column: ShuttleService - column: Name - column: CarsharingOrganisation - column: Flughafen - column: EigenerParkbereich The table should have the title "FlughafenCarsharingAnlages" und the data must be loaded from the server with the following relative URL: "/GeschaeftsmodellService/flughafencarsharinganlage/carsharingorganisation/{id}" Add a HTML table to the view with the following Tarif columns: - column: Kaution - column: Monatspauschale - column: Name - column: Beschreibung - column: FreeFloatingTarif - column: KilometerAbrechnung - column: Anmeldegebuehr - column: CarsharingOrganisation The table should have the title "Tarifs" und the data must be loaded from the server with the following relative URL: "/TarifService/tarif/carsharingorganisation/{id}" Add a HTML table to the view with the following IntermodaleKooperation columns: - column: OepnvBetreiber - column: Beschreibung - column: Startdatum - column: Enddatum - column: CarsharingOrganisation The table should have the title "IntermodaleKooperations" und the data must be loaded from the server with the following relative URL: "/CarsharingOrganisationService/intermodalekooperation/carsharingorganisation/{id}" Add a HTML table to the view with the following Station columns: - column: CarsharingOrganisation - column: BahnhofBezug - column: OeffentlicherParkplatz - column: Name - column: FlughafenBezug - column: Laengengrad - column: Adresse - column: Stationstyp - column: Stadt - column: Breitengrad The table should have the title "Stations" und the data must be loaded from the server with the following relative URL: "/StationService/station/carsharingorganisation/{id}" Add a HTML table to the view with the following Mitgliedschaft columns: - column: Mitgliedsnummer - column: CarsharingOrganisation - column: GastgeberAdresse - column: Nutzer - column: Enddatum - column: Startdatum - column: Gastgeber The table should have the title "Mitgliedschafts" und the data must be loaded from the server with the following relative URL: "/StationService/mitgliedschaft/carsharingorganisation/{id}" Add a HTML table to the view with the following DatenschutzMerkmal columns: - column: Standortdaten - column: Anonymisierung - column: Beschreibung - column: CarsharingOrganisation - column: Aufbewahrungstage The table should have the title "DatenschutzMerkmals" und the data must be loaded from the server with the following relative URL: "/RechnungService/datenschutzmerkmal/carsharingorganisation/{id}" 2. The FlotteView must contain the following fields: - name: Beschreibung type: STRING - name: CarsharingOrganisation type: CarsharingOrganisation - name: ElektroFokus type: BOOL - name: GeplanteFahrzeuge type: LONG - name: Name type: STRING The data source for the [CarsharingOrganisation] select control should be loaded from the relative URL: "/CarsharingOrganisationService/carsharingorganisation" (HTTP-GET) An existing Flotte entity should be loaded from the relative URL: "/CarsharingOrganisationService/flotte/{id}" (HTTP-GET) If a new Flotte entity has been created, the new entity should be posted to the relative URL: "/CarsharingOrganisationService/flotte" (HTTP-POST) If an existing Flotte entity has been updated, the modified entity should be sent to the relative URL: "/CarsharingOrganisationService/flotte/{id}" (HTTP-PUT) If an existing Flotte entity has to be deleted, the following relative URL should be called: "/CarsharingOrganisationService/flotte/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Fahrzeug columns: - column: Kraftstofftyp - column: ErstzulassungJahr - column: Aktiv - column: Kilometerstand - column: Flotte - column: Fahrzeugtyp - column: FreeFloatingFaehig - column: Vin - column: Kennzeichen The table should have the title "Fahrzeugs" und the data must be loaded from the server with the following relative URL: "/FahrzeugService/fahrzeug/flotte/{id}" 3. The IntermodaleKooperationView must contain the following fields: - name: Beschreibung type: STRING - name: CarsharingOrganisation type: CarsharingOrganisation - name: Enddatum type: DATE - name: OepnvBetreiber type: OepnvBetreiber - name: Startdatum type: DATE The data source for the [CarsharingOrganisation] select control should be loaded from the relative URL: "/CarsharingOrganisationService/carsharingorganisation" (HTTP-GET) The data source for the [OepnvBetreiber] select control should be loaded from the relative URL: "/CarsharingOrganisationService/oepnvbetreiber" (HTTP-GET) An existing IntermodaleKooperation entity should be loaded from the relative URL: "/CarsharingOrganisationService/intermodalekooperation/{id}" (HTTP-GET) If a new IntermodaleKooperation entity has been created, the new entity should be posted to the relative URL: "/CarsharingOrganisationService/intermodalekooperation" (HTTP-POST) If an existing IntermodaleKooperation entity has been updated, the modified entity should be sent to the relative URL: "/CarsharingOrganisationService/intermodalekooperation/{id}" (HTTP-PUT) If an existing IntermodaleKooperation entity has to be deleted, the following relative URL should be called: "/CarsharingOrganisationService/intermodalekooperation/{id}" (HTTP-DELETE) 4. The OepnvBetreiberView must contain the following fields: - name: Land type: Land - name: Name type: STRING - name: Stadt type: Stadt - name: Webseite type: STRING The data source for the [Stadt] select control should be loaded from the relative URL: "/CarsharingOrganisationService/stadt" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing OepnvBetreiber entity should be loaded from the relative URL: "/CarsharingOrganisationService/oepnvbetreiber/{id}" (HTTP-GET) If a new OepnvBetreiber entity has been created, the new entity should be posted to the relative URL: "/CarsharingOrganisationService/oepnvbetreiber" (HTTP-POST) If an existing OepnvBetreiber entity has been updated, the modified entity should be sent to the relative URL: "/CarsharingOrganisationService/oepnvbetreiber/{id}" (HTTP-PUT) If an existing OepnvBetreiber entity has to be deleted, the following relative URL should be called: "/CarsharingOrganisationService/oepnvbetreiber/{id}" (HTTP-DELETE) Add a HTML table to the view with the following IntermodaleKooperation columns: - column: OepnvBetreiber - column: Beschreibung - column: Startdatum - column: Enddatum - column: CarsharingOrganisation The table should have the title "IntermodaleKooperations" und the data must be loaded from the server with the following relative URL: "/CarsharingOrganisationService/intermodalekooperation/oepnvbetreiber/{id}" 5. The StadtView must contain the following fields: - name: Land type: Land - name: Name type: STRING - name: Postleitzahl type: STRING - name: Region type: STRING 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: "/CarsharingOrganisationService/stadt/{id}" (HTTP-GET) If a new Stadt entity has been created, the new entity should be posted to the relative URL: "/CarsharingOrganisationService/stadt" (HTTP-POST) If an existing Stadt entity has been updated, the modified entity should be sent to the relative URL: "/CarsharingOrganisationService/stadt/{id}" (HTTP-PUT) If an existing Stadt entity has to be deleted, the following relative URL should be called: "/CarsharingOrganisationService/stadt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CarsharingOrganisation columns: - column: Name - column: Aktiv - column: Stationaer - column: SitzStadt - column: Rechtsform - column: Webseite - column: Geschaeftsmodell - column: Organisationstyp - column: Gruendungsjahr - column: Kombinationsmodell - column: FreeFloating The table should have the title "CarsharingOrganisations" und the data must be loaded from the server with the following relative URL: "/CarsharingOrganisationService/carsharingorganisation/sitzstadt/{id}" Add a HTML table to the view with the following OepnvBetreiber columns: - column: Stadt - column: Name - column: Land - column: Webseite The table should have the title "OepnvBetreibers" und the data must be loaded from the server with the following relative URL: "/CarsharingOrganisationService/oepnvbetreiber/stadt/{id}" Add a HTML table to the view with the following Umweltstudie columns: - column: ErsetzteFahrzeuge - column: Stadt - column: Notizen - column: PrivatCo2ProKm - column: Anbieter - column: Co2ProKm - column: Jahr The table should have the title "Umweltstudies" und the data must be loaded from the server with the following relative URL: "/RechnungService/umweltstudie/stadt/{id}" Add a HTML table to the view with the following Flughafen columns: - column: IataCode - column: IcaoCode - column: Stadt - column: Name The table should have the title "Flughafens" und the data must be loaded from the server with the following relative URL: "/GeschaeftsmodellService/flughafen/stadt/{id}" Add a HTML table to the view with the following Station columns: - column: CarsharingOrganisation - column: BahnhofBezug - column: OeffentlicherParkplatz - column: Name - column: FlughafenBezug - column: Laengengrad - column: Adresse - column: Stationstyp - column: Stadt - column: Breitengrad The table should have the title "Stations" und the data must be loaded from the server with the following relative URL: "/StationService/station/stadt/{id}" 6. The VerbandsmitgliedschaftView must contain the following fields: - name: CarsharingOrganisation type: CarsharingOrganisation - name: CarsharingVerband type: CarsharingVerband - name: Mitgliedsart type: STRING - name: MitgliedSeit type: DATE The data source for the [CarsharingOrganisation] select control should be loaded from the relative URL: "/CarsharingOrganisationService/carsharingorganisation" (HTTP-GET) The data source for the [CarsharingVerband] select control should be loaded from the relative URL: "/LandService/carsharingverband" (HTTP-GET) An existing Verbandsmitgliedschaft entity should be loaded from the relative URL: "/CarsharingOrganisationService/verbandsmitgliedschaft/{id}" (HTTP-GET) If a new Verbandsmitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/CarsharingOrganisationService/verbandsmitgliedschaft" (HTTP-POST) If an existing Verbandsmitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/CarsharingOrganisationService/verbandsmitgliedschaft/{id}" (HTTP-PUT) If an existing Verbandsmitgliedschaft entity has to be deleted, the following relative URL should be called: "/CarsharingOrganisationService/verbandsmitgliedschaft/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum