getPatientCenter(); return $this->response->json($data); } /** * 获取患者信息 * @return ResponseInterface */ public function getPatientCenterInfo(): ResponseInterface { $UserPatientService = new UserPatientService(); $data = $UserPatientService->getPatientCenterInfo(); return $this->response->json($data); } }