%PDF- %PDF-
| Direktori : /proc/self/root/home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CourseBundle/Entity/ |
| Current File : //proc/self/root/home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CourseBundle/Entity/CResource.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CResource.
*
* @ORM\Table(
* name="c_resource",
* indexes={
* @ORM\Index(name="course", columns={"c_id"})
* }
* )
* @ORM\Entity
*/
class CResource
{
/**
* @var int
*
* @ORM\Column(name="iid", type="integer")
* @ORM\Id
* @ORM\GeneratedValue
*/
protected $iid;
/**
* @var int
*
* @ORM\Column(name="c_id", type="integer")
*/
protected $cId;
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=true)
*/
protected $id;
/**
* @var string
*
* @ORM\Column(name="source_type", type="string", length=50, nullable=true)
*/
protected $sourceType;
/**
* @var int
*
* @ORM\Column(name="source_id", type="integer", nullable=true)
*/
protected $sourceId;
/**
* @var string
*
* @ORM\Column(name="resource_type", type="string", length=50, nullable=true)
*/
protected $resourceType;
/**
* @var int
*
* @ORM\Column(name="resource_id", type="integer", nullable=true)
*/
protected $resourceId;
/**
* Set sourceType.
*
* @param string $sourceType
*
* @return CResource
*/
public function setSourceType($sourceType)
{
$this->sourceType = $sourceType;
return $this;
}
/**
* Get sourceType.
*
* @return string
*/
public function getSourceType()
{
return $this->sourceType;
}
/**
* Set sourceId.
*
* @param int $sourceId
*
* @return CResource
*/
public function setSourceId($sourceId)
{
$this->sourceId = $sourceId;
return $this;
}
/**
* Get sourceId.
*
* @return int
*/
public function getSourceId()
{
return $this->sourceId;
}
/**
* Set resourceType.
*
* @param string $resourceType
*
* @return CResource
*/
public function setResourceType($resourceType)
{
$this->resourceType = $resourceType;
return $this;
}
/**
* Get resourceType.
*
* @return string
*/
public function getResourceType()
{
return $this->resourceType;
}
/**
* Set resourceId.
*
* @param int $resourceId
*
* @return CResource
*/
public function setResourceId($resourceId)
{
$this->resourceId = $resourceId;
return $this;
}
/**
* Get resourceId.
*
* @return int
*/
public function getResourceId()
{
return $this->resourceId;
}
/**
* Set id.
*
* @param int $id
*
* @return CResource
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set cId.
*
* @param int $cId
*
* @return CResource
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId.
*
* @return int
*/
public function getCId()
{
return $this->cId;
}
}