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
| http get :
|
| http://localhost:8080/api/satisfaction/getMySatisfaction
|
|
| response body:
|
| [
| {
| "id": 11,
| "createdDate": "2021-12-03T03:59:07.854Z",
| "lastModifiedDate": "2021-12-03T03:59:07.854Z",
| "customerId": 90,
| "agentNo": "B282677963",
| "status": "FILLED",
| "score": 4.0,
| "appointmentId": 134,
| "customerName": "Jack",
| "agentName": "喬妹"
| },
| {
| "id": 12,
| "createdDate": "2021-12-03T04:00:43.181Z",
| "lastModifiedDate": "2021-12-03T04:00:43.181Z",
| "customerId": 90,
| "agentNo": "B282677963",
| "status": "FILLED",
| "score": 4.0,
| "appointmentId": 135,
| "customerName": "Jack",
| "agentName": "喬妹"
| },
| {
| "id": 13,
| "createdDate": "2021-12-03T04:01:20.095Z",
| "lastModifiedDate": "2021-12-03T04:01:20.095Z",
| "customerId": 90,
| "agentNo": "B282677963",
| "status": "FILLED",
| "score": 2.0,
| "appointmentId": 136,
| "customerName": "Jack",
| "agentName": "喬妹"
| }
| ]
|
|