Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
StudentView
Please create a React-JS view called "StudentView" for the fields of the Student entity. The StudentView must contain the following fields: - name: Email type: STRING - name: RecommendedSchoolType type: SchoolType - name: CityOfBirth type: STRING - name: DateOfBirth type: DATE - name: Gender type: Gender - name: ChosenSchoolType type: SchoolType - name: StudentInfo type: STRING - name: HealthInsurance type: HealthInsurance - name: ReadWriteAtony type: BOOL - name: CellPhoneNo type: STRING - name: LastName type: STRING - name: PostalCode type: STRING - name: ReligionTeaching type: Religion - name: Religion type: Religion - name: SwimmingInsignia type: SwimmingInsignia - name: City type: STRING - name: Street type: STRING - name: PhoneNo type: STRING - name: FirstName type: STRING The data source for the [RecommendedSchoolType] select control should be loaded from the relative URL: "/SchoolService/schooltype" (HTTP-GET) The data source for the [Religion] select control should be loaded from the relative URL: "/StudentService/religion" (HTTP-GET) The data source for the [ChosenSchoolType] select control should be loaded from the relative URL: "/SchoolService/schooltype" (HTTP-GET) The data source for the [Gender] select control should be loaded from the relative URL: "/StudentService/gender" (HTTP-GET) The data source for the [SwimmingInsignia] select control should be loaded from the relative URL: "/StudentService/swimminginsignia" (HTTP-GET) The data source for the [HealthInsurance] select control should be loaded from the relative URL: "/CompanyService/healthinsurance" (HTTP-GET) The data source for the [ReligionTeaching] select control should be loaded from the relative URL: "/StudentService/religion" (HTTP-GET) An existing Student entity should be loaded from the relative URL: "/StudentService/student/{id}" (HTTP-GET) If a new Student entity has been created, the new entity should be posted to the relative URL: "/StudentService/student" (HTTP-POST) If an existing Student entity has been updated, the modified entity should be sent to the relative URL: "/StudentService/student/{id}" (HTTP-PUT) If an existing Student entity has to be deleted, the following relative URL should be called: "/StudentService/student/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Accident columns: - column: Description - column: AccidentDate - column: Student The table should have the title "Accidents" und the data must be loaded from the server with the following relative URL: "/StudentService/accident/student/{id}" Add a HTML table to the view with the following EducationCoupon columns: - column: ToDate - column: Amount - column: FromDate - column: Student The table should have the title "EducationCoupons" und the data must be loaded from the server with the following relative URL: "/EducationCouponService/educationcoupon/student/{id}" Add a HTML table to the view with the following HomeWork columns: - column: Schoolsubject - column: WorkDate - column: Description - column: DeadLine - column: Grade - column: SchoolClass - column: Done - column: Subject - column: Student The table should have the title "HomeWorks" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectService/homework/student/{id}" Add a HTML table to the view with the following TestResult columns: - column: Test - column: Grade - column: Student The table should have the title "TestResults" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectClassService/testresult/student/{id}" Add a HTML table to the view with the following StudentContact columns: - column: ExternalPerson - column: Student The table should have the title "StudentContacts" und the data must be loaded from the server with the following relative URL: "/ExternalPersonService/studentcontact/student/{id}" Add a HTML table to the view with the following MigrationBackground columns: - column: History - column: Student - column: ShortText The table should have the title "MigrationBackgrounds" und the data must be loaded from the server with the following relative URL: "/StudentService/migrationbackground/student/{id}" Add a HTML table to the view with the following VitaEntry columns: - column: School - column: Student - column: Nursery - column: Company - column: FromDate - column: ToDate - column: Details The table should have the title "VitaEntrys" und the data must be loaded from the server with the following relative URL: "/NurseryService/vitaentry/student/{id}" Add a HTML table to the view with the following StudentMaterial columns: - column: Comments - column: Amount - column: ConsumableMaterial - column: DesignatedUse - column: Costs - column: Student - column: Paid The table should have the title "StudentMaterials" und the data must be loaded from the server with the following relative URL: "/StudentService/studentmaterial/student/{id}" Add a HTML table to the view with the following EventTask columns: - column: TaskTitle - column: ExternalPerson - column: Teacher - column: Details - column: SchoolEvent - column: Student The table should have the title "EventTasks" und the data must be loaded from the server with the following relative URL: "/StudentService/eventtask/student/{id}" Add a HTML table to the view with the following StudentTransport columns: - column: Transport - column: Details - column: Student The table should have the title "StudentTransports" und the data must be loaded from the server with the following relative URL: "/StudentService/studenttransport/student/{id}" Add a HTML table to the view with the following SchoolEventAttendee columns: - column: Teacher - column: ExternalPerson - column: InvitationShipped - column: Student - column: SchoolEvent - column: Invitation The table should have the title "SchoolEventAttendees" und the data must be loaded from the server with the following relative URL: "/SchoolEventService/schooleventattendee/student/{id}" Add a HTML table to the view with the following Nationality columns: - column: Country - column: Student The table should have the title "Nationalitys" und the data must be loaded from the server with the following relative URL: "/CountryService/nationality/student/{id}" Add a HTML table to the view with the following ConferenceAttendee columns: - column: Teacher - column: ExternalPerson - column: Conference - column: Student The table should have the title "ConferenceAttendees" und the data must be loaded from the server with the following relative URL: "/ConferenceService/conferenceattendee/student/{id}" Add a HTML table to the view with the following CourseGroupMember columns: - column: Student - column: CourseGroup The table should have the title "CourseGroupMembers" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectService/coursegroupmember/student/{id}" Add a HTML table to the view with the following Contribution columns: - column: Student - column: PaymentDetails - column: Amount - column: SchoolEvent - column: SchoolTrip The table should have the title "Contributions" und the data must be loaded from the server with the following relative URL: "/SchoolEventService/contribution/student/{id}" Add a HTML table to the view with the following BookRental columns: - column: Student - column: Library - column: FromDate - column: Teacher - column: ReservationDate - column: Book - column: ToDate The table should have the title "BookRentals" und the data must be loaded from the server with the following relative URL: "/LibraryService/bookrental/student/{id}" Add a HTML table to the view with the following SchoolClassStudent columns: - column: Student - column: SchoolClass The table should have the title "SchoolClassStudents" und the data must be loaded from the server with the following relative URL: "/SchoolClassStudentService/schoolclassstudent/student/{id}" Add a HTML table to the view with the following ProjectAttendee columns: - column: Project - column: Student The table should have the title "ProjectAttendees" und the data must be loaded from the server with the following relative URL: "/StudentService/projectattendee/student/{id}" Add a HTML table to the view with the following StudentRepresentation columns: - column: Student - column: School - column: SchoolClass The table should have the title "StudentRepresentations" und the data must be loaded from the server with the following relative URL: "/SchoolService/studentrepresentation/student/{id}" Add a HTML table to the view with the following FoodOrder columns: - column: FoodOrderDate - column: Teacher - column: Food - column: ExternalPerson - column: Student The table should have the title "FoodOrders" und the data must be loaded from the server with the following relative URL: "/FoodService/foodorder/student/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum