src/Entity/CategoriaDocumento.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * CategoriaDocumento
  6.  *
  7.  * @ORM\Table(name="categoria_documento")
  8.  * @ORM\Entity(repositoryClass="App\Repository\CategoriaDocumentoRepository")
  9.  */
  10. class CategoriaDocumento
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="categoria_id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $categoriaId;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="descripcion", type="string", length=255, nullable=true)
  24.      */
  25.     private $descripcion;
  26.     /**
  27.      * @var boolean
  28.      *
  29.      * @ORM\Column(name="estado", type="boolean", nullable=true)
  30.      */
  31.     private $estado;
  32.     /**
  33.      * @var Empresa
  34.      *
  35.      * @ORM\ManyToOne(targetEntity="App\Entity\Empresa")
  36.      * @ORM\JoinColumns({
  37.      *   @ORM\JoinColumn(name="empresa_id", referencedColumnName="empresa_id")
  38.      * })
  39.      */
  40.     private $empresa;
  41.     /**
  42.      * Get categoriaId
  43.      *
  44.      * @return integer
  45.      */
  46.     public function getCategoriaId()
  47.     {
  48.         return $this->categoriaId;
  49.     }
  50.     /**
  51.      * Set descripcion
  52.      *
  53.      * @param string $descripcion
  54.      *
  55.      */
  56.     public function setDescripcion($descripcion)
  57.     {
  58.         $this->descripcion $descripcion;
  59.     }
  60.     /**
  61.      * Get descripcion
  62.      *
  63.      * @return string
  64.      */
  65.     public function getDescripcion()
  66.     {
  67.         return $this->descripcion;
  68.     }
  69.     /**
  70.      * Set estado
  71.      *
  72.      * @param boolean $estado
  73.      */
  74.     public function setEstado($estado)
  75.     {
  76.         $this->estado $estado;
  77.     }
  78.     /**
  79.      * Get estado
  80.      *
  81.      * @return boolean
  82.      */
  83.     public function getEstado()
  84.     {
  85.         return $this->estado;
  86.     }
  87.     /**
  88.      * @return Empresa
  89.      */
  90.     public function getEmpresa()
  91.     {
  92.         return $this->empresa;
  93.     }
  94.     public function setEmpresa($empresa)
  95.     {
  96.         $this->empresa $empresa;
  97.     }
  98. }