objMEnterprise = new MEnterprise(); } /** * @throws \Exception */ public function getEnterpriseInfo() { $params['enterpriseId'] = $this->onlineEnterpriseId; $result = $this->objMEnterprise->getEnterpriseInfo($params); if ($result->isSuccess()) { parent::sendOutput($result->getData()); } else { parent::sendOutput($result->getData(), $result->getErrorCode()); } } }