新增获取医生证书信息、调整获取专场路由

This commit is contained in:
2023-02-24 16:58:45 +08:00
parent bba24692e5
commit 2c4865cde7
3 changed files with 84 additions and 6 deletions
+11
View File
@@ -212,4 +212,15 @@ class UserDoctorController extends AbstractController
$data = $UserDoctorService->getDoctorCenterInfo();
return $this->response->json($data);
}
/**
* 获取医生证书信息
* @return ResponseInterface
*/
public function getDoctorCret(): ResponseInterface
{
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->getDoctorCret();
return $this->response->json($data);
}
}