File: /home/undanet/www/PortalEmpleo/src/Entity/DboRangoexperiencia.php
<?php
namespace PortalEmpleo\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* DboRangoexperiencia
*
* @ORM\Table(name="dbo_rangoexperiencia")
* @ORM\Entity
*/
class DboRangoexperiencia
{
/**
* @var int
*
* @ORM\Column(name="IdRangoExperiencia", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idrangoexperiencia;
/**
* @var string
*
* @ORM\Column(name="RangoExperiencia", type="string", length=50, nullable=false)
*/
private $rangoexperiencia;
/**
* @var int|null
*
* @ORM\Column(name="MinimoExperiencia", type="integer", nullable=true)
*/
private $minimoexperiencia;
/**
* @var int|null
*
* @ORM\Column(name="MaximoExperiencia", type="integer", nullable=true)
*/
private $maximoexperiencia;
/**
* @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 idrangoexperiencia
*
* @return int
*/
public function getIdrangoexperiencia()
{
return $this->idrangoexperiencia;
}
/**
* Set the value of idrangoexperiencia
*
* @param int $idrangoexperiencia
*
* @return self
*/
public function setIdrangoexperiencia(int $idrangoexperiencia)
{
$this->idrangoexperiencia = $idrangoexperiencia;
return $this;
}
/**
* Get the value of rangoexperiencia
*
* @return string
*/
public function getRangoexperiencia()
{
return $this->rangoexperiencia;
}
/**
* Set the value of rangoexperiencia
*
* @param string $rangoexperiencia
*
* @return self
*/
public function setRangoexperiencia(string $rangoexperiencia)
{
$this->rangoexperiencia = $rangoexperiencia;
return $this;
}
/**
* Get the value of minimoexperiencia
*
* @return int|null
*/
public function getMinimoexperiencia()
{
return $this->minimoexperiencia;
}
/**
* Set the value of minimoexperiencia
*
* @param int|null $minimoexperiencia
*
* @return self
*/
public function setMinimoexperiencia($minimoexperiencia)
{
$this->minimoexperiencia = $minimoexperiencia;
return $this;
}
/**
* Get the value of maximoexperiencia
*
* @return int|null
*/
public function getMaximoexperiencia()
{
return $this->maximoexperiencia;
}
/**
* Set the value of maximoexperiencia
*
* @param int|null $maximoexperiencia
*
* @return self
*/
public function setMaximoexperiencia($maximoexperiencia)
{
$this->maximoexperiencia = $maximoexperiencia;
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;
}
}