%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/CRoleUser.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CRoleUser.
*
* @ORM\Table(
* name="c_role_user",
* indexes={
* @ORM\Index(name="course", columns={"c_id"}),
* @ORM\Index(name="user", columns={"user_id"})
* }
* )
* @ORM\Entity
*/
class CRoleUser
{
/**
* @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 string
*
* @ORM\Column(name="scope", type="string", length=20, nullable=false)
*/
protected $scope;
/**
* @var int
*
* @ORM\Column(name="role_id", type="integer")
*/
protected $roleId;
/**
* @var int
*
* @ORM\Column(name="user_id", type="integer")
*/
protected $userId;
/**
* Set scope.
*
* @param string $scope
*
* @return CRoleUser
*/
public function setScope($scope)
{
$this->scope = $scope;
return $this;
}
/**
* Get scope.
*
* @return string
*/
public function getScope()
{
return $this->scope;
}
/**
* Set cId.
*
* @param int $cId
*
* @return CRoleUser
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId.
*
* @return int
*/
public function getCId()
{
return $this->cId;
}
/**
* Set roleId.
*
* @param int $roleId
*
* @return CRoleUser
*/
public function setRoleId($roleId)
{
$this->roleId = $roleId;
return $this;
}
/**
* Get roleId.
*
* @return int
*/
public function getRoleId()
{
return $this->roleId;
}
/**
* Set userId.
*
* @param int $userId
*
* @return CRoleUser
*/
public function setUserId($userId)
{
$this->userId = $userId;
return $this;
}
/**
* Get userId.
*
* @return int
*/
public function getUserId()
{
return $this->userId;
}
}