src/Entity/Rol.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Rol
  6.  *
  7.  * @ORM\Table(name="rol")
  8.  * @ORM\Entity(repositoryClass="App\Repository\RolRepository")
  9.  */
  10. class Rol
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="rol_id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $rolId;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="nombre", type="string", length=255, nullable=false)
  24.      */
  25.     private $nombre;
  26.     /**
  27.      * Get rolId
  28.      *
  29.      * @return integer 
  30.      */
  31.     public function getRolId()
  32.     {
  33.         return $this->rolId;
  34.     }
  35.     /**
  36.      * Set nombre
  37.      *
  38.      * @param string $nombre
  39.      * @return Rol
  40.      */
  41.     public function setNombre($nombre)
  42.     {
  43.         $this->nombre $nombre;
  44.     
  45.         return $this;
  46.     }
  47.     /**
  48.      * Get nombre
  49.      *
  50.      * @return string 
  51.      */
  52.     public function getNombre()
  53.     {
  54.         return $this->nombre;
  55.     }
  56. }