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
| http get :
|
| http://localhost:8080/api/appointment/customer/get_all_group_by_consultant
|
|
| response body :
| [ {
| "agentNo" : "A568420",
| "name" : "謝霆風",
| "img" : "C://pam_file/consultant_A568420.jpg",
| "expertise" : [ "健康與保障", "子女教育" ],
| "avgScore" : 1.0,
| "contactStatus" : "reserved",
| "createTime" : "2021-12-29T09:33:16.526Z",
| "updateTime" : "2023-07-27T07:50:58.167Z",
| "customerViewTime" : "2021-12-29T09:33:18.727Z",
| "role" : "66666",
| "seniority" : "39 年 4 月",
| "entryDate" : "1984-03-29T00:00:00.000+00:00",
| "appointments" : [ {
| "id" : 435,
| "phone" : "0973057067",
| "email" : "",
| "contactType" : "phone",
| "gender" : "male",
| "age" : "under_20",
| "job" : "外勤",
| "requirement" : "健康與保障",
| "communicateStatus" : "closed",
| "hopeContactTime" : "'星期一,星期二,星期三,星期四,星期五,星期六,星期日、9:00~12:00,12:00~14:00,14:00~18:00,18:00~21:00'",
| "otherRequirement" : null,
| "appointmentDate" : "2021-12-29T09:33:16.643Z",
| "lastModifiedDate" : "2022-03-22T03:49:05.602Z",
| "agentNo" : "A568420",
| "customerId" : 90,
| "name" : "Jack",
| "consultantViewTime" : "2021-12-29T09:33:49.547Z",
| "consultantReadTime" : "2021-12-29T09:37:21.710Z",
| "contactTime" : "2022-01-04T03:34:09.399Z",
| "satisfactionScore" : null,
| "appointmentMemoList" : [ ],
| "interviewRecordDTOs" : [ ],
| "appointmentNoticeLogs" : [ ],
| "appointmentClosedInfo" : {
| "id" : 70,
| "policyholderIdentityId" : null,
| "planCode" : null,
| "policyEntryDate" : null,
| "remark" : "ddddde",
| "closedReason" : "economy",
| "closedOtherReason" : null,
| "appointmentId" : 435
| },
| "consultationMethod" : null
| }, {
| "id" : 618,
| "phone" : "0973057067",
| "email" : "jack568420@gmail.com",
| "contactType" : "phone",
| "gender" : "male",
| "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" : "2023-07-20T07:49:03.361Z",
| "lastModifiedDate" : "2023-07-27T07:50:58.167Z",
| "agentNo" : "A568420",
| "customerId" : 90,
| "name" : "Jack",
| "consultantViewTime" : null,
| "consultantReadTime" : null,
| "contactTime" : null,
| "satisfactionScore" : null,
| "appointmentMemoList" : [ ],
| "interviewRecordDTOs" : [ ],
| "appointmentNoticeLogs" : [ ],
| "appointmentClosedInfo" : null,
| "consultationMethod" : "offline"
| } ]
| } ]
|
|