File: /home/undanet/www//PortalEmpleo/src/Entity/DboNivelidioma.php
<?php
namespace PortalEmpleo\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* DboNivelidioma
*
* @ORM\Table(name="dbo_nivelidioma")
* @ORM\Entity
*/
class DboNivelidioma
{
/**
* @var int
*
* @ORM\Column(name="IdNivelIdioma", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idnivelidioma;
/**
* @var string
*
* @ORM\Column(name="NivelIdioma", type="string", length=50, nullable=false)
*/
private $nivelidioma;
/**
* @var bool
*
* @ORM\Column(name="Baja", type="boolean", nullable=false)
*/
private $baja;
/**
* Constructor
*/
public function __construct()
{
}
/**
* Get the value of idnivelidioma
*
* @return int
*/
public function getIdnivelidioma()
{
return $this->idnivelidioma;
}
/**
* Set the value of idnivelidioma
*
* @param int $idnivelidioma
*
* @return self
*/
public function setIdnivelidioma(int $idnivelidioma)
{
$this->idnivelidioma = $idnivelidioma;
return $this;
}
/**
* Get the value of nivelidioma
*
* @return string
*/
public function getNivelidioma()
{
return $this->nivelidioma;
}
/**
* Set the value of nivelidioma
*
* @param string $nivelidioma
*
* @return self
*/
public function setNivelidioma(string $nivelidioma)
{
$this->nivelidioma = $nivelidioma;
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;
}
}