src/Entity/JobRequirementType.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Doctrine\Common\Collections\Collection;
  5. class JobRequirementType {
  6.     /**
  7.      * @var integer
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var integer|null
  12.      */
  13.     private $bicID;      
  14.     
  15.     /**
  16.      * @var string
  17.      */
  18.     private $typeName;
  19.     
  20.     /**
  21.      * @var string
  22.      */
  23.     private $shortName;    
  24.     /**
  25.      * @var bool
  26.      */
  27.     private $modifiedName false;    
  28.     
  29.     /**
  30.      * @var \Doctrine\Common\Collections\Collection
  31.      */
  32.     private $jobRequirements;
  33.     /**
  34.      * Constructor
  35.      */
  36.     public function __construct() {
  37.         $this->jobRequirements = new \Doctrine\Common\Collections\ArrayCollection();
  38.     }
  39.     
  40.     public function getId() {
  41.         return $this->id;
  42.     }
  43.     public function getBicID() {
  44.         return $this->bicID;
  45.     }    
  46.     public function getJobRequirements() {
  47.         return $this->jobRequirements;
  48.     }    
  49.     
  50.     public function getShortName() {
  51.         return $this->shortName;
  52.     }    
  53.     
  54.     public function getTypeName() {
  55.         return $this->typeName;
  56.     }
  57.     /**
  58.      * Get modifiedName.
  59.      *
  60.      * @return bool
  61.      */
  62.     public function getModifiedName() {
  63.         return $this->modifiedName;
  64.     }        
  65.     
  66.     /**
  67.      * Set modifiedName.
  68.      *
  69.      * @param bool $modifiedName
  70.      *
  71.      * @return JobRequirementType
  72.      */
  73.     public function setModifiedName($modifiedName) {
  74.         $this->modifiedName $modifiedName;
  75.     }    
  76.     
  77.     public function setBicID($bicID) {
  78.         $this->bicID $bicID;
  79.     }        
  80.     
  81.     public function setShortName(string $shortName): void {
  82.         $this->shortName $shortName;
  83.     }
  84.     
  85.     public function setTypeName(string $typeName) {
  86.         $this->typeName $typeName;
  87.     }
  88.     public function setJobRequirements(\Doctrine\Common\Collections\Collection $jobRequirements) {
  89.         $this->jobRequirements $jobRequirements;
  90.     }
  91. }