objMOem = new MOem($this->onlineEnterpriseId, $this->onlineUserId); } /** * 获取指定logo贴标 */ public function getOemInfo() { $oemId = $this->request->param('request_id'); if ( !$oemId ) { $this->sendOutput('参数错误', ErrorCode::$paramError ); } $result = $this->objMOem->getOemInfo($oemId); if($result->isSuccess()){ $this->sendOutput($result->getData()); }else{ $this->sendOutput($result->getData(), $result->getErrorCode()); } } }