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
| http get :
|
| http://localhost:8080/api/consultant/getMyAppointment
|
|
|
| response body :
| [
| {
| "id": 13,
| "phone": "09123456789",
| "email": "pollex@pollex.comm.tw",
| "contactType": "phone",
| "gender": "male",
| "age": null,
| "job": "專案經理",
| "requirement": "財務規劃,資產移轉",
| "communicateStatus": "reserved",
| "hopeContactTime": "'星期一~星期五, 12:00~14:00, 18:00~21:00'",
| "otherRequirement": "外幣投資",
| "appointmentDate": "2021-11-10T04:15:11.292Z",
| "agentNo": "admin",
| "customerId": 2,
| "name": "Jack"
| },
| {
| "id": 14,
| "phone": "09123456789",
| "email": "pollex@pollex.comm.tw",
| "contactType": "phone",
| "gender": "male",
| "age": null,
| "job": "專案經理",
| "requirement": "財務規劃,資產移轉",
| "communicateStatus": "reserved",
| "hopeContactTime": "'星期一~星期五, 12:00~14:00, 18:00~21:00'",
| "otherRequirement": "外幣投資",
| "appointmentDate": "2021-11-10T04:16:22.526Z",
| "agentNo": "admin",
| "customerId": 2,
| "name": "Jack"
| },
| {
| "id": 15,
| "phone": "09123456789",
| "email": "pollex@pollex.comm.tw",
| "contactType": "phone",
| "gender": "male",
| "age": null,
| "job": "專案經理",
| "requirement": "財務規劃,資產移轉",
| "communicateStatus": "reserved",
| "hopeContactTime": "'星期一~星期五, 12:00~14:00, 18:00~21:00'",
| "otherRequirement": "外幣投資",
| "appointmentDate": "2021-11-10T09:42:28.134Z",
| "agentNo": "admin",
| "customerId": 2,
| "name": "Jack"
| },
| {
| "id": 16,
| "phone": "09123456789",
| "email": "pollex@pollex.comm.tw",
| "contactType": "phone",
| "gender": "male",
| "age": "20-25",
| "job": "專案經理",
| "requirement": "財務規劃,資產移轉",
| "communicateStatus": "reserved",
| "hopeContactTime": "'星期一~星期五, 12:00~14:00, 18:00~21:00'",
| "otherRequirement": "外幣投資",
| "appointmentDate": "2021-11-10T09:44:43.445Z",
| "agentNo": "admin",
| "customerId": 2,
| "name": "Jack"
| }
| ]
|
|