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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
| http get: http://localhost:8080/api/consultant/favorite
|
| response body:
| [
| {
| "agentNo": "J149388015",
| "name": "宋重機",
| "img": "avatar9.jpg",
| "expertise": [
| "健康與保障",
| "子女教育",
| "資產規劃",
| "樂活退休",
| "保單健檢/規劃",
| "分紅保單"
| ],
| "avgScore": 4.0,
| "contactStatus": "reserved", // 可進行狀態:picked (進行預約)、reserved (已預約)、contacted (已連繫)
| "createTime": "2021-12-02T10:55:53.939Z", // 加入顧問清單時間
| "updateTime": "2021-12-02T10:56:32.741Z", // 最近更新時間
| "role": "威盛保險經紀人",
| "seniority": "22 年 8 月",
| "latestAppointmentId": 130, // 最後一筆預約單ID
| "latestAppointmentDate": "2021-12-02T10:56:32.741Z", // 最後一筆預約單預約時間
| "latestAppointmentScore": null, // 最後一筆預約單的分數 (null為尚未評分)
| "appointments": [ // 客戶已預約的顧問清單
| {
| "id": 130,
| "phone": "0938520091",
| "email": "",
| "contactType": "phone",
| "gender": "female",
| "age": "21-30",
| "job": "內勤",
| "requirement": "子女教育,分紅保單相關",
| "communicateStatus": "reserved",
| "hopeContactTime": "'禮拜一,禮拜二,禮拜三、12:00~14:00,18:00~21:00'",
| "otherRequirement": null,
| "appointmentDate": "2021-12-02T10:56:32.741Z",
| "lastModifiedDate": "2021-12-02T10:56:32.741Z",
| "agentNo": "J149388015",
| "customerId": 76,
| "name": "李哲維",
| "consultantViewTime": null,
| "consultantReadTime": null
| }
| ],
| "new": true
| },
| {
| "agentNo": "B282677963",
| "name": "喬妹",
| "img": "avatar6.jpg",
| "expertise": [
| "健康與保障",
| "子女教育",
| "資產規劃",
| "樂活退休",
| "保單健檢/規劃",
| "分紅保單"
| ],
| "avgScore": 1.0,
| "contactStatus": "reserved",
| "createTime": "2021-12-02T10:55:57.423Z",
| "updateTime": "2021-12-02T10:56:56.946Z",
| "role": "錠嵂保險經紀人",
| "seniority": "30 年 8 月",
| "latestAppointmentId": 131,
| "latestAppointmentDate": "2021-12-02T10:56:56.946Z",
| "latestAppointmentScore": null,
| "appointments": [
| {
| "id": 131,
| "phone": "0938520091",
| "email": "",
| "contactType": "phone",
| "gender": "female",
| "age": "21-30",
| "job": "內勤",
| "requirement": "子女教育,分紅保單相關",
| "communicateStatus": "reserved",
| "hopeContactTime": "'禮拜五、9:00~12:00,12:00~14:00,14:00~18:00,18:00~21:00'",
| "otherRequirement": null,
| "appointmentDate": "2021-12-02T10:56:56.946Z",
| "lastModifiedDate": "2021-12-02T10:56:56.946Z",
| "agentNo": "B282677963",
| "customerId": 76,
| "name": "李哲維",
| "consultantViewTime": null,
| "consultantReadTime": null
| }
| ],
| "new": true
| },
| {
| "agentNo": "R221444250",
| "name": "崔寨",
| "img": "avatar10.jpg",
| "expertise": [
| "健康與保障",
| "子女教育",
| "資產規劃",
| "樂活退休",
| "保單健檢/規劃",
| "分紅保單"
| ],
| "avgScore": 5.0,
| "contactStatus": "picked",
| "createTime": "2021-12-02T10:56:01.004Z",
| "updateTime": null,
| "role": "台名保險經紀人",
| "seniority": "38 年 ",
| "latestAppointmentId": null,
| "latestAppointmentDate": null,
| "latestAppointmentScore": null,
| "appointments": [],
| "new": true
| },
| {
| "agentNo": "Z152717443",
| "name": "伍夠勇",
| "img": "avatar3.jpg",
| "expertise": [
| "健康與保障",
| "子女教育",
| "資產規劃",
| "樂活退休",
| "保單健檢/規劃",
| "分紅保單"
| ],
| "avgScore": 3.0,
| "contactStatus": "picked",
| "createTime": "2021-12-02T10:56:04.620Z",
| "updateTime": null,
| "role": "和泰保險經紀人",
| "seniority": "17 年 1 月",
| "latestAppointmentId": null,
| "latestAppointmentDate": null,
| "latestAppointmentScore": null, // 最後一筆預約單的分數 (null為尚未評分)
| "appointments": [],
| "new": true
| }
| ]
|
|