File: /home/undanet/www/PortalEmpleo/src/Entity/DboPerfil.php
<?php
namespace PortalEmpleo\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* DboPerfil
*
* @ORM\Table(name="dbo_perfil")
* @ORM\Entity
*/
class DboPerfil
{
/**
* @var int
*
* @ORM\Column(name="IdPerfil", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idperfil;
/**
* @var string
*
* @ORM\Column(name="Perfil", type="string", length=100, nullable=false)
*/
private $perfil;
/**
* @var bool
*
* @ORM\Column(name="Baja", type="boolean", nullable=false)
*/
private $baja;
/**
* Constructor
*/
public function __construct()
{
//$this->codigoidioma = new \Doctrine\Common\Collections\ArrayCollection();
}
/**
* Get the value of idperfil
*
* @return int
*/
public function getIdperfil()
{
return $this->idperfil;
}
/**
* Set the value of idperfil
*
* @param int $idperfil
*
* @return self
*/
public function setIdperfil(int $idperfil)
{
$this->idperfil = $idperfil;
return $this;
}
/**
* Get the value of perfil
*
* @return string
*/
public function getPerfil()
{
return $this->perfil;
}
/**
* Set the value of perfil
*
* @param string $perfil
*
* @return self
*/
public function setPerfil(string $perfil)
{
$this->perfil = $perfil;
return $this;
}
/**
* Get the value of baja
*
* @return bool
*/
public function getBaja()
{
return $this->baja;
}
/**
* Set the value of baja
*
* @param bool $baja
*
* @return self
*/
public function setBaja(bool $baja)
{
$this->baja = $baja;
return $this;
}
}