-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearningPatterns-Entities.jdl
More file actions
110 lines (100 loc) · 2.4 KB
/
LearningPatterns-Entities.jdl
File metadata and controls
110 lines (100 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
entity Subject {
subjectName String
subjectDescription String
subjectCredits Integer
subjectCreatedBy String
subjectCreationDate LocalDate
subjectModifiedBy String
subjectModifiedDate LocalDate
}
entity Theme {
themeName String
themeDescription String
themeCreatedBy String
themeCreationDate LocalDate
themeModifiedBy String
themeModifiedDate LocalDate
}
entity Subtheme {
subthemeName String
subthemeDescription String
subthemeCreatedBy String
subthemeCreationDate LocalDate
subthemeModifiedBy String
subthemeModifiedDate LocalDate
}
entity Activity {
activityName String
activityDescription String
activityDuration Integer
activityUtility Integer
activityReqsId Integer
activityCreatedBy String
activityCreationDate LocalDate
activityModifiedBy String
activityModifiedDate LocalDate
}
entity Group {
groupCreatedBy String
groupCreationDate LocalDate
groupModifiedBy String
groupModifiedDate LocalDate
}
entity StudentSchedule {
studentScheduleCreatedBy String
studentScheduleCreationDate LocalDate
studentScheduleModifiedBy String
studentScheduleModifiedDate LocalDate
}
entity Teacher {
teacherFirstName String
teacherLastName String
teacherEmail String
teacherPassword String
teacherCreatedBy String
teacherCreationDate LocalDate
teacherModifiedBy String
teacherModifiedDate LocalDate
}
entity Student {
studentFirstName String
studentLastName String
studentEmail String
studentPassword String
studentCredits String
studentCreatedBy String
studentCreationDate LocalDate
studentModifiedBy String
studentModifiedDate LocalDate
}
entity StudentActivity {
ActivityStartDate LocalDate
ActivityEndDate LocalDate
ActivityGrade Integer
StudentActivityGradeDate LocalDate
StudentActivityCreatedDate LocalDate
StudentActivityCreatedBy String
StudentActivityModifiedDate LocalDate
StudentActivityModifiedBy LocalDate
}
relationship ManyToOne {
Activity{subtheme} to Subtheme
Subtheme{theme} to Theme
Theme{subject} to Subject
Group{subject} to Subject
Group{teacher} to Teacher
StudentSchedule{group} to Group
StudentSchedule{student} to Student
StudentActivity{activity} to Activity
StudentActivity{studentschedule} to StudentSchedule
Subject{teacher} to Teacher
}
filter Subject
filter Theme
filter Subtheme
filter Activity
filter Group
filter StudentSchedule
filter Teacher
filter Student
filter StudentActivity