Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PersonApp
Please create a React-JS application for the PersonModule. The application has to offer the following views for the user interface: 1. PersonView 2. PersonenRolleView 3. TechnologieView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The PersonView must contain the following fields: - name: Geburtsjahr type: LONG - name: NationalitaetLand type: Land - name: Notizen type: STRING - name: Todesjahr type: LONG - name: Vollname type: STRING The data source for the [NationalitaetLand] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Person entity should be loaded from the relative URL: "/PersonService/person/{id}" (HTTP-GET) If a new Person entity has been created, the new entity should be posted to the relative URL: "/PersonService/person" (HTTP-POST) If an existing Person entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/person/{id}" (HTTP-PUT) If an existing Person entity has to be deleted, the following relative URL should be called: "/PersonService/person/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Technologie columns: - column: Beschreibung - column: Kategorie - column: Erfindungsjahr - column: Name - column: ErfinderPerson The table should have the title "Technologies" und the data must be loaded from the server with the following relative URL: "/PersonService/technologie/erfinderperson/{id}" Add a HTML table to the view with the following PersonenRolle columns: - column: Anlage - column: Organisation - column: Person - column: Notizen - column: Startjahr - column: Rolle - column: Endjahr The table should have the title "PersonenRolles" und the data must be loaded from the server with the following relative URL: "/PersonService/personenrolle/person/{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/person/{id}" 2. The PersonenRolleView must contain the following fields: - name: Anlage type: LONG - name: Endjahr type: LONG - name: Notizen type: STRING - name: Organisation type: LONG - name: Person type: Person - name: Rolle type: STRING - name: Startjahr type: LONG The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing PersonenRolle entity should be loaded from the relative URL: "/PersonService/personenrolle/{id}" (HTTP-GET) If a new PersonenRolle entity has been created, the new entity should be posted to the relative URL: "/PersonService/personenrolle" (HTTP-POST) If an existing PersonenRolle entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/personenrolle/{id}" (HTTP-PUT) If an existing PersonenRolle entity has to be deleted, the following relative URL should be called: "/PersonService/personenrolle/{id}" (HTTP-DELETE) 3. The TechnologieView must contain the following fields: - name: Beschreibung type: STRING - name: ErfinderPerson type: Person - name: Erfindungsjahr type: LONG - name: Kategorie type: STRING - name: Name type: STRING The data source for the [ErfinderPerson] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Technologie entity should be loaded from the relative URL: "/PersonService/technologie/{id}" (HTTP-GET) If a new Technologie entity has been created, the new entity should be posted to the relative URL: "/PersonService/technologie" (HTTP-POST) If an existing Technologie entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/technologie/{id}" (HTTP-PUT) If an existing Technologie entity has to be deleted, the following relative URL should be called: "/PersonService/technologie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TechnologieEinsatz columns: - column: Technologie - column: VonJahr - column: Beschreibung - column: Gasnetz - column: BisJahr - column: Anlage The table should have the title "TechnologieEinsatzs" und the data must be loaded from the server with the following relative URL: "/GasnetzService/technologieeinsatz/technologie/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum