src/Entity/JobExpertTerm.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobExpertTerm {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var integer
  11.      */
  12.     private $bicID;
  13.     /**
  14.      * @var string
  15.      */
  16.     private $termName;
  17.     /**
  18.      * @var string
  19.      */
  20.     private $description;
  21.     /**
  22.      * Get id
  23.      *
  24.      * @return integer
  25.      */
  26.     public function getId() {
  27.         return $this->id;
  28.     }
  29.     /**
  30.      * Get bicID
  31.      *
  32.      * @return integer
  33.      */
  34.     public function getBicID() {
  35.         return $this->bicID;
  36.     }
  37.     /**
  38.      * Set bicID
  39.      *
  40.      * @param integer $bicID
  41.      *
  42.      * @return JobExpertTerm
  43.      */
  44.     public function setBicID($bicID) {
  45.         $this->bicID $bicID;
  46.         return $this;
  47.     }
  48.     /**
  49.      * Set termName
  50.      *
  51.      * @param string $termName
  52.      *
  53.      * @return JobExpertTerm
  54.      */
  55.     public function setTermName($termName) {
  56.         $this->termName $termName;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get termName
  61.      *
  62.      * @return string
  63.      */
  64.     public function getTermName() {
  65.         return $this->termName;
  66.     }
  67.     /**
  68.      * Set description
  69.      *
  70.      * @param string $description
  71.      *
  72.      * @return JobExpertTerm
  73.      */
  74.     public function setDescription(string $description) {
  75.         $this->description $description;
  76.         
  77.         return $this;
  78.     }
  79.     /**
  80.      * Get description
  81.      *
  82.      * @return string
  83.      */
  84.     public function getDescription() {
  85.         return $this->description;
  86.     }
  87. }