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
| http post: http://localhost:8080/api/consultant/strictQuery
|
| request body:
| {
| "gender":"female",
| "avgScore":5, // 若無選擇滿意度條件則給0
| "status": "online", // phase 1 disalbed
| "area":"桃園",
| "requirements": ["健康與保障","保單健檢/規劃"],
| "otherRequirement": "長照險",
| "seniority": "SENIOR" // "資深"帶"SENIOR"、"年輕"帶"YOUNG"、"不限"帶"UNLIMITED"
| "popularTags":["防疫","失能","防癌"],
| "otherPopularTags":"旅行險",
| }
|
| response body:
| [
| {
| "agentNo": "12345",
| "name": "測試推薦業務員",
| "img": "",
| "expertise": [
| "財務規劃",
| "資產轉移"
| ],
| "suitability": 50 // 匹配度
| "avgScore": 4.7,
| "contactStatus": null,
| "updateTime": null,
| "seniority": "4年2個月",
| "role": "台名保險經紀人",
| "new": false,
| "latestAppointmentId": null
| },
| {
| "agentNo": "12346",
| "name": "測試業務員",
| "img": "",
| "expertise": [
| "資產轉移",
| "節稅",
| "樂活退休"
| ],
| "suitability": 100 // 匹配度
| "avgScore": 3.8,
| "contactStatus": null,
| "updateTime": null,
| "seniority": "2年3個月",
| "role": "台名保險經紀人",
| "new": false,
| "latestAppointmentId": null
| }
| ]
|
|