http post : http://localhost:8080/api/satisfaction/score 填寫一筆: request body: { "appointmentId": 482, "score":4, "type": "APPOINTMENT" // "APPOINTMENT" 表針對此次預約的顧問滿意度、 "SYSTEM" 則是針對平台的滿意度 } response body: { "id": 84, "customerId": 165, "agentNo": "AGAM11249699", "status": "FILLED", "score": 4.0, "appointmentId": 482, "type": "APPOINTMENT" } ===================================================== 填寫多筆滿意度: http post : http://localhost:8080/api/satisfaction/score/all request body: [{ "appointmentId": 482, "score":4, "type": "APPOINTMENT" // "APPOINTMENT" 表針對此次預約的顧問滿意度、 "SYSTEM" 則是針對平台的滿意度 }] response body: [{ "id": 84, "customerId": 165, "agentNo": "AGAM11249699", "status": "FILLED", "score": 4.0, "appointmentId": 482, "type": "APPOINTMENT" }]