%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/Entity/ |
| Current File : //home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/Entity/SearchEngineRef.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* SearchEngineRef.
*
* @ORM\Table(name="search_engine_ref")
* @ORM\Entity
*/
class SearchEngineRef
{
/**
* @var string
*
* @ORM\Column(name="course_code", type="string", length=40, nullable=false)
*/
protected $courseCode;
/**
* @var string
*
* @ORM\Column(name="tool_id", type="string", length=100, nullable=false)
*/
protected $toolId;
/**
* @var int
*
* @ORM\Column(name="ref_id_high_level", type="integer", nullable=false)
*/
protected $refIdHighLevel;
/**
* @var int
*
* @ORM\Column(name="ref_id_second_level", type="integer", nullable=true)
*/
protected $refIdSecondLevel;
/**
* @var int
*
* @ORM\Column(name="search_did", type="integer", nullable=false)
*/
protected $searchDid;
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/**
* Set courseCode.
*
* @param string $courseCode
*
* @return SearchEngineRef
*/
public function setCourseCode($courseCode)
{
$this->courseCode = $courseCode;
return $this;
}
/**
* Get courseCode.
*
* @return string
*/
public function getCourseCode()
{
return $this->courseCode;
}
/**
* Set toolId.
*
* @param string $toolId
*
* @return SearchEngineRef
*/
public function setToolId($toolId)
{
$this->toolId = $toolId;
return $this;
}
/**
* Get toolId.
*
* @return string
*/
public function getToolId()
{
return $this->toolId;
}
/**
* Set refIdHighLevel.
*
* @param int $refIdHighLevel
*
* @return SearchEngineRef
*/
public function setRefIdHighLevel($refIdHighLevel)
{
$this->refIdHighLevel = $refIdHighLevel;
return $this;
}
/**
* Get refIdHighLevel.
*
* @return int
*/
public function getRefIdHighLevel()
{
return $this->refIdHighLevel;
}
/**
* Set refIdSecondLevel.
*
* @param int $refIdSecondLevel
*
* @return SearchEngineRef
*/
public function setRefIdSecondLevel($refIdSecondLevel)
{
$this->refIdSecondLevel = $refIdSecondLevel;
return $this;
}
/**
* Get refIdSecondLevel.
*
* @return int
*/
public function getRefIdSecondLevel()
{
return $this->refIdSecondLevel;
}
/**
* Set searchDid.
*
* @param int $searchDid
*
* @return SearchEngineRef
*/
public function setSearchDid($searchDid)
{
$this->searchDid = $searchDid;
return $this;
}
/**
* Get searchDid.
*
* @return int
*/
public function getSearchDid()
{
return $this->searchDid;
}
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
}