<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;class JobExpertTerm { /** * @var int */ private $id; /** * @var int */ private $bicID; /** * @var string */ private $termName; /** * @var string */ private $description; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Get bicID * * @return integer */ public function getBicID() { return $this->bicID; } /** * Set bicID * * @param integer $bicID * * @return JobExpertTerm */ public function setBicID($bicID) { $this->bicID = $bicID; return $this; } /** * Set termName * * @param string $termName * * @return JobExpertTerm */ public function setTermName($termName) { $this->termName = $termName; return $this; } /** * Get termName * * @return string */ public function getTermName() { return $this->termName; } /** * Set description * * @param string $description * * @return JobExpertTerm */ public function setDescription(string $description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; }}