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/satisfaction/score
|
|
| 填寫一筆:
|
| request body:
|
| {
| "appointmentId": 67,
| "score":4
| }
|
|
|
| response body:
|
| {
| "id": 3,
| "customerId": 2,
| "agentNo": "admin",
| "status": "UNFILLED",
| "score": 4
| }
|
| =====================================================
|
| 填寫多筆滿意度:
|
| http post :
|
| http://localhost:8080/api/satisfaction/score/all
|
| request body:
|
| [{
| "appointmentId": 67,
| "score":4
| }]
|
|
|
| response body:
|
|
| [{
| "id": 3,
| "customerId": 2,
| "agentNo": "admin",
| "status": "UNFILLED",
| "score": 4
| }]
|
|