src/Entity/CompanySize.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class CompanySize
  5. {
  6.     /**
  7.      * @var integer
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var string
  12.      */
  13.     private $name;
  14.     /**
  15.      * @var string
  16.      */
  17.     private $text;
  18.     /**
  19.      * @var integer
  20.      */
  21.     private $minEmployees;
  22.     /**
  23.      * @var integer
  24.      */
  25.     private $maxEmployees;
  26.     /**
  27.      * Get id
  28.      *
  29.      * @return integer
  30.      */
  31.     public function getId()
  32.     {
  33.         return $this->id;
  34.     }
  35.     /**
  36.      * Set name
  37.      *
  38.      * @param string $name
  39.      *
  40.      * @return CompanySize
  41.      */
  42.     public function setName($name)
  43.     {
  44.         $this->name $name;
  45.         return $this;
  46.     }
  47.     /**
  48.      * Get name
  49.      *
  50.      * @return string
  51.      */
  52.     public function getName()
  53.     {
  54.         return $this->name;
  55.     }
  56.     /**
  57.      * Set text
  58.      *
  59.      * @param string $text
  60.      *
  61.      * @return CompanySize
  62.      */
  63.     public function setText($text)
  64.     {
  65.         $this->text $text;
  66.         return $this;
  67.     }
  68.     /**
  69.      * Get text
  70.      *
  71.      * @return string
  72.      */
  73.     public function getText()
  74.     {
  75.         return $this->text;
  76.     }
  77.     /**
  78.      * Set minEmployees
  79.      *
  80.      * @param integer $minEmployees
  81.      *
  82.      * @return CompanySize
  83.      */
  84.     public function setMinEmployees($minEmployees)
  85.     {
  86.         $this->minEmployees $minEmployees;
  87.         return $this;
  88.     }
  89.     /**
  90.      * Get minEmployees
  91.      *
  92.      * @return integer
  93.      */
  94.     public function getMinEmployees()
  95.     {
  96.         return $this->minEmployees;
  97.     }
  98.     /**
  99.      * Set maxEmployees
  100.      *
  101.      * @param integer $maxEmployees
  102.      *
  103.      * @return CompanySize
  104.      */
  105.     public function setMaxEmployees($maxEmployees)
  106.     {
  107.         $this->maxEmployees $maxEmployees;
  108.         return $this;
  109.     }
  110.     /**
  111.      * Get maxEmployees
  112.      *
  113.      * @return integer
  114.      */
  115.     public function getMaxEmployees()
  116.     {
  117.         return $this->maxEmployees;
  118.     }
  119. }