src/Entity/JobRequirement.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Doctrine\Common\Collections\Collection;
  5. use App\Entity\Job;
  6. class JobRequirement {
  7.     /**
  8.      * @var integer
  9.      */
  10.     private $id;
  11.     /**
  12.      * @var integer|null
  13.      */
  14.     private $bicID;
  15.     /**
  16.      * @var string
  17.      */
  18.     private $requirementName;
  19.     /**
  20.      * @var string|null
  21.      */
  22.     private $description;
  23.     /**
  24.      * @var \App\Entity\JobRequirementType
  25.      */
  26.     private $jobRequirementType;
  27.     /**
  28.      * @var bool
  29.      */
  30.     private $modifiedName false;
  31.     /**
  32.      * @var bool
  33.      */
  34.     private $modifiedDescription false;
  35.     /**
  36.      * Constructor
  37.      */
  38.     public function __construct() {
  39.         
  40.     }
  41.     public function getId() {
  42.         return $this->id;
  43.     }
  44.     public function getBicID() {
  45.         return $this->bicID;
  46.     }
  47.     public function getRequirementName() {
  48.         return $this->requirementName;
  49.     }
  50.     public function getDescription() {
  51.         return $this->description;
  52.     }
  53.     public function getJobRequirementType() {
  54.         return $this->jobRequirementType;
  55.     }
  56.     public function setBicID($bicID) {
  57.         $this->bicID $bicID;
  58.     }
  59.     public function setRequirementName($requirementName) {
  60.         $this->requirementName $requirementName;
  61.     }
  62.     public function setDescription($description) {
  63.         $this->description $description;
  64.     }
  65.     public function setJobRequirementType(\App\Entity\JobRequirementType $jobRequirementType) {
  66.         $this->jobRequirementType $jobRequirementType;
  67.     }
  68.     /**
  69.      * Set modifiedName.
  70.      *
  71.      * @param bool $modifiedName
  72.      *
  73.      * @return JobRequirement
  74.      */
  75.     public function setModifiedName($modifiedName) {
  76.         $this->modifiedName $modifiedName;
  77.     }
  78.     /**
  79.      * Set modifiedDescription.
  80.      *
  81.      * @param bool $modifiedDescription
  82.      *
  83.      * @return JobRequirement
  84.      */
  85.     public function setModifiedDescription($modifiedDescription) {
  86.         $this->modifiedDescription $modifiedDescription;
  87.     }
  88.     /**
  89.      * Get modifiedName.
  90.      *
  91.      * @return bool
  92.      */
  93.     public function getModifiedName() {
  94.         return $this->modifiedName;
  95.     }
  96.     /**
  97.      * Get modifiedDescription.
  98.      *
  99.      * @return bool
  100.      */
  101.     public function getModifiedDescription() {
  102.         return $this->modifiedDescription;
  103.     }
  104. }