<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CategoriaDocumento
*
* @ORM\Table(name="categoria_documento")
* @ORM\Entity(repositoryClass="App\Repository\CategoriaDocumentoRepository")
*/
class CategoriaDocumento
{
/**
* @var integer
*
* @ORM\Column(name="categoria_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $categoriaId;
/**
* @var string
*
* @ORM\Column(name="descripcion", type="string", length=255, nullable=true)
*/
private $descripcion;
/**
* @var boolean
*
* @ORM\Column(name="estado", type="boolean", nullable=true)
*/
private $estado;
/**
* @var Empresa
*
* @ORM\ManyToOne(targetEntity="App\Entity\Empresa")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="empresa_id", referencedColumnName="empresa_id")
* })
*/
private $empresa;
/**
* Get categoriaId
*
* @return integer
*/
public function getCategoriaId()
{
return $this->categoriaId;
}
/**
* Set descripcion
*
* @param string $descripcion
*
*/
public function setDescripcion($descripcion)
{
$this->descripcion = $descripcion;
}
/**
* Get descripcion
*
* @return string
*/
public function getDescripcion()
{
return $this->descripcion;
}
/**
* Set estado
*
* @param boolean $estado
*/
public function setEstado($estado)
{
$this->estado = $estado;
}
/**
* Get estado
*
* @return boolean
*/
public function getEstado()
{
return $this->estado;
}
/**
* @return Empresa
*/
public function getEmpresa()
{
return $this->empresa;
}
public function setEmpresa($empresa)
{
$this->empresa = $empresa;
}
}