src/Entity/Funcion.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Funcion
  6.  *
  7.  * @ORM\Table(name="funcion")
  8.  * @ORM\Entity(repositoryClass="App\Repository\FuncionRepository")
  9.  */
  10. class Funcion
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="funcion_id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $funcionId;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="url", type="string", length=255, nullable=false)
  24.      */
  25.     private $url;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="descripcion", type="string", length=255, nullable=false)
  30.      */
  31.     private $descripcion;
  32.     /**
  33.      * Get funcionId
  34.      *
  35.      * @return integer
  36.      */
  37.     public function getFuncionId()
  38.     {
  39.         return $this->funcionId;
  40.     }
  41.     /**
  42.      * @return string
  43.      */
  44.     public function getUrl()
  45.     {
  46.         return $this->url;
  47.     }
  48.     /**
  49.      * @param string $url
  50.      */
  51.     public function setUrl($url)
  52.     {
  53.         $this->url $url;
  54.     }
  55.     /**
  56.      * Set descripcion
  57.      *
  58.      * @param string $descripcion
  59.      * @return Funcion
  60.      */
  61.     public function setDescripcion($descripcion)
  62.     {
  63.         $this->descripcion $descripcion;
  64.         return $this;
  65.     }
  66.     /**
  67.      * Get descripcion
  68.      *
  69.      * @return string
  70.      */
  71.     public function getDescripcion()
  72.     {
  73.         return $this->descripcion;
  74.     }
  75. }