新增获取医生评价

This commit is contained in:
2023-03-13 14:22:24 +08:00
parent 6d2c0374a3
commit 6926137b5e
4 changed files with 63 additions and 2 deletions
@@ -84,4 +84,15 @@ class PatientDoctorController extends AbstractController
$data = $PatientDoctorService->getDoctorList();
return $this->response->json($data);
}
/**
* 获取医生评价
* @return ResponseInterface
*/
public function getDoctorEvaluationList(): ResponseInterface
{
$PatientDoctorService = new PatientDoctorService();
$data = $PatientDoctorService->getDoctorEvaluationList();
return $this->response->json($data);
}
}