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
| http get :
|
| http://localhost:8080/api/consultant/getMyAppointment
|
|
|
| response body :
|
| [
| {
| "id": 11,
| "phone": "09123456789",
| "email": "pollex@pollex.comm.tw",
| "contactType": "phone",
| "gender": "male",
| "age": 20,
| "job": "專案經理",
| "requirement": "財務規劃,資產移轉",
| "communicateStatus": "picked",
| "hopeContactTime": "'星期一~星期五, 12:00~14:00, 18:00~21:00'",
| "otherRequirement": "外幣投資",
| "appointmentDate": "2021-11-10T03:17:30.586Z",
| "agentNo": "admin"
| },
| {
| "id": 12,
| "phone": "09123456789",
| "email": "pollex@pollex.comm.tw",
| "contactType": "phone",
| "gender": "male",
| "age": 20,
| "job": "專案經理",
| "requirement": "財務規劃,資產移轉",
| "communicateStatus": "reserved",
| "hopeContactTime": "'星期一~星期五, 12:00~14:00, 18:00~21:00'",
| "otherRequirement": "外幣投資",
| "appointmentDate": "2021-11-10T03:20:00.563Z",
| "agentNo": "admin"
| }
| ]
|
|