迁移我的医生服务类,新增获取问诊医生列表

This commit is contained in:
2023-03-04 15:13:11 +08:00
parent d7983a1f2b
commit 80dbd4bf93
10 changed files with 303 additions and 183 deletions
@@ -10,17 +10,5 @@ use Psr\Http\Message\ResponseInterface;
*/
class PatientCenterController extends AbstractController
{
/**
* 删除我的医生
* 首页-个人中心
* @return ResponseInterface
*/
public function deleteMyDoctor(): ResponseInterface
{
$patientFamilyService = new MyDoctorService();
$data = $patientFamilyService->deleteMyDoctor();
return $this->response->json($data);
}
}