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
| http post: http://localhost:8080/api/consultant/fastQuery
|
| request body:
| {
| "gender": "female",
| "communicationStyles": [],
| "avgScore": 4,
| "status": "online"
| }
|
| response body:
| [
| {
| "agentNo": "12345",
| "name": "測試推薦業務員",
| "img": "",
| "expertise": [
| "財務規劃",
| "資產轉移"
| ],
| "avgScore": 4.7,
| "contactStatus": null,
| "updateTime": null,
| "seniority": "4年2個月",
| "role": "台名保險經紀人",
| "new": false,
| "latestAppointmentId": null
| },
| {
| "agentNo": "12346",
| "name": "測試業務員",
| "img": "",
| "expertise": [
| "資產轉移",
| "節稅",
| "樂活退休"
| ],
| "avgScore": 3.8,
| "contactStatus": null,
| "updateTime": null,
| "seniority": "2年3個月",
| "role": "台名保險經紀人",
| "new": false,
| "latestAppointmentId": null
| }
| ]
|
|