<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class JobLehrlingseinkommenMapping {
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $siteJobName;
/**
* @var string
*/
private $siteJobUrl;
/**
* @var \DateTime
*/
private $updateAt;
/**
* @var \App\Entity\Job
*/
private $job;
public function getId(): int {
return $this->id;
}
public function getSiteJobName(): string {
return $this->siteJobName;
}
public function getSiteJobUrl(): string {
return $this->siteJobUrl;
}
public function getUpdateAt(): \DateTime {
return $this->updateAt;
}
public function setId(int $id): void {
$this->id = $id;
}
public function setSiteJobName(string $siteJobName): void {
$this->siteJobName = $siteJobName;
}
public function setSiteJobUrl(string $siteJobUrl): void {
$this->siteJobUrl = $siteJobUrl;
}
public function setUpdateAt(\DateTime $updateAt): void {
$this->updateAt = $updateAt;
}
/**
* Set job
*
* @param \App\Entity\Job $job
*
* @return JobAmsMapping
*/
public function setJob(\App\Entity\Job $job = null) {
$this->job = $job;
return $this;
}
/**
* Get job
*
* @return \App\Entity\Job
*/
public function getJob() {
return $this->job;
}
}