Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SchoolYearView
Please create a React-JS view called "SchoolYearView" for the fields of the SchoolYear entity. The SchoolYearView must contain the following fields: - name: FromDate type: DATE - name: ToDate type: DATE - name: SchoolYearName type: STRING An existing SchoolYear entity should be loaded from the relative URL: "/SchoolYearService/schoolyear/{id}" (HTTP-GET) If a new SchoolYear entity has been created, the new entity should be posted to the relative URL: "/SchoolYearService/schoolyear" (HTTP-POST) If an existing SchoolYear entity has been updated, the modified entity should be sent to the relative URL: "/SchoolYearService/schoolyear/{id}" (HTTP-PUT) If an existing SchoolYear entity has to be deleted, the following relative URL should be called: "/SchoolYearService/schoolyear/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SchoolReport columns: - column: SchoolClassStudent - column: SchoolYear The table should have the title "SchoolReports" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/schoolreport/schoolyear/{id}" Add a HTML table to the view with the following CourseGroup columns: - column: SchoolYear - column: RequiredCourse - column: SchoolSubject - column: GroupName The table should have the title "CourseGroups" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectService/coursegroup/schoolyear/{id}" Add a HTML table to the view with the following TeacherLesson columns: - column: SchoolYear - column: LessonCount - column: Teacher The table should have the title "TeacherLessons" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectService/teacherlesson/schoolyear/{id}" Add a HTML table to the view with the following TeacherBoard columns: - column: SchoolYear - column: School The table should have the title "TeacherBoards" und the data must be loaded from the server with the following relative URL: "/TeacherBoardService/teacherboard/schoolyear/{id}" Add a HTML table to the view with the following BreakPlan columns: - column: Schoolyard - column: SchoolYear The table should have the title "BreakPlans" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/breakplan/schoolyear/{id}" Add a HTML table to the view with the following CurriculumEntry columns: - column: SchoolSubject - column: Curriculum - column: LessonCount - column: SchoolYear The table should have the title "CurriculumEntrys" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/curriculumentry/schoolyear/{id}" Add a HTML table to the view with the following TeachingUnit columns: - column: RowIndex - column: SchoolSubject - column: Room - column: SchoolYear - column: CourseGroup - column: SchoolClass - column: ColumnIndex - column: Teacher The table should have the title "TeachingUnits" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/teachingunit/schoolyear/{id}" Add a HTML table to the view with the following SchoolClass columns: - column: Teacher - column: AgeGroup - column: Room - column: SchoolYear - column: ClassName - column: School The table should have the title "SchoolClasss" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/schoolclass/schoolyear/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum