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
| http get :
|
| http://localhost:8080/api/satisfaction/getMySatisfaction
|
|
| response body:
|
| [
| {
| "id" : 85,
| "createdDate" : "2022-01-24T11:48:58.039Z",
| "lastModifiedDate" : "2022-01-24T11:48:58.039Z",
| "customerId" : 165,
| "agentNo" : "AGAM11249699",
| "status" : "UNFILLED",
| "score" : null,
| "appointmentId" : 483,
| "customerName" : "Mila la",
| "agentName" : "莫拉邀 lala",
| "type" : "APPOINTMENT" // "APPOINTMENT"是對顧問預約的滿意度,"SYSTEM"是對平台的滿意度
| },
| {
| "id" : 84,
| "createdDate" : "2022-01-24T10:31:03.799Z",
| "lastModifiedDate" : "2022-01-24T10:31:03.799Z",
| "customerId" : 165,
| "agentNo" : "AGAM11249699",
| "status" : "FILLED",
| "score" : 1.0,
| "appointmentId" : 482,
| "customerName" : "Mila la",
| "agentName" : "莫拉邀 lala",
| "type" : "APPOINTMENT"
| }, {
| "id" : 95,
| "createdDate" : "2022-02-10T07:28:39.095Z",
| "lastModifiedDate" : "2022-02-10T07:28:39.095Z",
| "customerId" : 165,
| "agentNo" : null,
| "status" : "UNFILLED",
| "score" : null,
| "appointmentId" : 527,
| "customerName" : "Mila la",
| "agentName" : null,
| "type" : "SYSTEM"
| }
| ]
|
|