<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;class JobSectorImage{ /** * @var int */ private $id; /** * @var string */ private $name; /** * @var string */ private $alttext; /** * @var string */ private $filename; /** * @var string */ private $fileExtension; /** * @var \App\Entity\FilePath */ private $filePath; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set name * * @param string $name * * @return JobSectorImage */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set alttext * * @param string $alttext * * @return JobSectorImage */ public function setAlttext($alttext) { $this->alttext = $alttext; return $this; } /** * Get alttext * * @return string */ public function getAlttext() { return $this->alttext; } /** * Set filename * * @param string $filename * * @return JobSectorImage */ public function setFilename($filename) { $this->filename = $filename; return $this; } /** * Get filename * * @return string */ public function getFilename() { return $this->filename; } /** * Set fileExtension * * @param string $fileExtension * * @return JobSectorImage */ public function setFileExtension($fileExtension) { $this->fileExtension = $fileExtension; return $this; } /** * Get fileExtension * * @return string */ public function getFileExtension() { return $this->fileExtension; } /** * Set filePath * * @param \App\Entity\FilePath $filePath * * @return JobSectorImage */ public function setFilePath(\App\Entity\FilePath $filePath = null) { $this->filePath = $filePath; return $this; } /** * Get filePath * * @return \App\Entity\FilePath */ public function getFilePath() { return $this->filePath; }}