getPatientCenter(); return $this->response->json($data); } /** * 获取患者信息 * @return ResponseInterface */ public function getPatientCenterInfo(): ResponseInterface { $UserPatientService = new UserPatientService(); $data = $UserPatientService->getPatientCenterInfo(); return $this->response->json($data); } /** * 获取患者优惠卷列表 * @return ResponseInterface * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ public function getPatientCouponlist(): ResponseInterface { $request = $this->container->get(UserPatientRequest::class); $request->scene('getPatientCouponlist')->validateResolved(); $UserPatientService = new UserPatientService(); $data = $UserPatientService->getPatientCouponlist(); return $this->response->json($data); } /** * 删除服务过患者的医生 * 首页-个人中心 * @return ResponseInterface */ public function deletePatientDoctor(): ResponseInterface { $UserPatientService = new UserPatientService(); $data = $UserPatientService->deletePatientDoctor(); return $this->response->json($data); } // public function }