<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;class JobSalaryType { /** * @var int */ private $id; /** * @var string */ private $typeName; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set typeName * * @param string $typeNname * * @return JobSalaryType */ public function setTypeName($typeName) { $this->typeName = $typeName; return $this; } /** * Get typeName * * @return string */ public function getTypeName() { return $this->typeName; }}