-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign.uml
87 lines (84 loc) · 1.27 KB
/
design.uml
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
@startuml
class Santri {
id : integer
no_induk : string
nik : string
name : string
place_born : string
birth_date: date
gender : string
dta_id : integer
created_at : date
update_at :date
}
class TahunAjaran {
id: integer
name : string
created_at : date
updated_at : date
}
class Kelas{
id : integer
name : string
created_at : date
updated_at : date
}
class KelasDetail{
id : integer
id_kelas : integer
id_tahunajaran : integer
id_santri : integer
created_at : date
updated_at : date
}
class Dta {
id: integer
no_statistik : string
name : string
address : string
headmaster : string
}
class MataPelajaran {
id: integer
name : string
created_at : date
updated_at : date
}
class Uad {
id: integer
id_mata_pelajaran : integer
id_santri : integer
nilai : integer
created_at : date
updated_at : date
}
class Tahfidz{
id: integer
id_santri : integer
jumlah : integer
}
class Perilaku{
id : integer
id_santri : integer
perilaku : string
created_at : string
updated_at : string
}
class Operator{
id : integer
name : string
password : string
email : string
dta_id : string
created_at : date
updated_at : date
}
class User{
id: integer
name : string
password : string
email : string
created_at : date
updated_at : date
}
@enduml