src/Entity/JobLehrlingseinkommenMapping.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobLehrlingseinkommenMapping {
  5.     /**
  6.      * @var int
  7.      */
  8.     private $id;
  9.     
  10.     /**
  11.      * @var string
  12.      */
  13.     private $siteJobName;
  14.     /**
  15.      * @var string
  16.      */
  17.     private $siteJobUrl;
  18.     /**
  19.      * @var \DateTime
  20.      */
  21.     private $updateAt;    
  22.     
  23.     /**
  24.      * @var \App\Entity\Job
  25.      */
  26.     private $job;
  27.     public function getId(): int {
  28.         return $this->id;
  29.     }
  30.     public function getSiteJobName(): string {
  31.         return $this->siteJobName;
  32.     }
  33.     public function getSiteJobUrl(): string {
  34.         return $this->siteJobUrl;
  35.     }
  36.     public function getUpdateAt(): \DateTime {
  37.         return $this->updateAt;
  38.     }
  39.     public function setId(int $id): void {
  40.         $this->id $id;
  41.     }
  42.     public function setSiteJobName(string $siteJobName): void {
  43.         $this->siteJobName $siteJobName;
  44.     }
  45.     public function setSiteJobUrl(string $siteJobUrl): void {
  46.         $this->siteJobUrl $siteJobUrl;
  47.     }
  48.     public function setUpdateAt(\DateTime $updateAt): void {
  49.         $this->updateAt $updateAt;
  50.     }
  51.     /**
  52.      * Set job
  53.      *
  54.      * @param \App\Entity\Job $job
  55.      *
  56.      * @return JobAmsMapping
  57.      */
  58.     public function setJob(\App\Entity\Job $job null) {
  59.         $this->job $job;
  60.         return $this;
  61.     }
  62.     /**
  63.      * Get job
  64.      *
  65.      * @return \App\Entity\Job
  66.      */
  67.     public function getJob() {
  68.         return $this->job;
  69.     }
  70. }