<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class CompanySize
{
/**
* @var integer
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $text;
/**
* @var integer
*/
private $minEmployees;
/**
* @var integer
*/
private $maxEmployees;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set name
*
* @param string $name
*
* @return CompanySize
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set text
*
* @param string $text
*
* @return CompanySize
*/
public function setText($text)
{
$this->text = $text;
return $this;
}
/**
* Get text
*
* @return string
*/
public function getText()
{
return $this->text;
}
/**
* Set minEmployees
*
* @param integer $minEmployees
*
* @return CompanySize
*/
public function setMinEmployees($minEmployees)
{
$this->minEmployees = $minEmployees;
return $this;
}
/**
* Get minEmployees
*
* @return integer
*/
public function getMinEmployees()
{
return $this->minEmployees;
}
/**
* Set maxEmployees
*
* @param integer $maxEmployees
*
* @return CompanySize
*/
public function setMaxEmployees($maxEmployees)
{
$this->maxEmployees = $maxEmployees;
return $this;
}
/**
* Get maxEmployees
*
* @return integer
*/
public function getMaxEmployees()
{
return $this->maxEmployees;
}
}