-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
46 lines (46 loc) · 811 Bytes
/
db.json
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
{
"admin": [
{
"id": 1,
"email": "[email protected]",
"password": "asdfgh"
}
],
"employee": [
{
"id": 1,
"firstname": "olu",
"lastname": "sola",
"email": "[email protected]",
"password": "olu234"
},
{
"firstName": "",
"lastName": "",
"department": "",
"email": "",
"password": "",
"id": 2
}
],
"attendance": [
{
"id": 1,
"employeeId": 1,
"time In": "11:45pm",
"time Out": "3:45pm"
},
{
"employeeId": "1",
"timeIn": "9/19/2019, 10:37:32 AM",
"timeOut": "9/19/2019, 10:37:32 AM",
"id": 2
},
{
"employeeId": "1",
"timeIn": "9/19/2019, 10:38:11 AM",
"timeOut": "9/19/2019, 10:38:11 AM",
"id": 3
}
]
}