<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Rol
*
* @ORM\Table(name="rol")
* @ORM\Entity(repositoryClass="App\Repository\RolRepository")
*/
class Rol
{
/**
* @var integer
*
* @ORM\Column(name="rol_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $rolId;
/**
* @var string
*
* @ORM\Column(name="nombre", type="string", length=255, nullable=false)
*/
private $nombre;
/**
* Get rolId
*
* @return integer
*/
public function getRolId()
{
return $this->rolId;
}
/**
* Set nombre
*
* @param string $nombre
* @return Rol
*/
public function setNombre($nombre)
{
$this->nombre = $nombre;
return $this;
}
/**
* Get nombre
*
* @return string
*/
public function getNombre()
{
return $this->nombre;
}
}