src/Entity/JobCandidate.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\JobCandidateRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use App\Traits\EntityDateTimeAbleTrait;
  6. #[ORM\Entity(repositoryClassJobCandidateRepository::class)]
  7. #[ORM\HasLifecycleCallbacks]
  8. class JobCandidate
  9. {
  10.     use EntityDateTimeAbleTrait;
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column(type'integer')]
  14.     private $id;
  15.     #[ORM\ManyToOne(targetEntityOffer::class, inversedBy'jobCandidates')]
  16.     private ?\App\Entity\Offer $offer null;
  17.     #[ORM\ManyToOne(targetEntityStudyLevel::class, inversedBy'jobCandidates')]
  18.     private ?\App\Entity\StudyLevel $studyLevel null;
  19.     #[ORM\Column(type'integer'nullabletrue)]
  20.     private ?int $status null;
  21.     #[ORM\Column(type'string'length255nullabletrue)]
  22.     private ?string $firstName null;
  23.     #[ORM\Column(type'string'length255nullabletrue)]
  24.     private ?string $lastName null;
  25.     #[ORM\Column(type'boolean'nullabletrue)]
  26.     private ?bool $gender null;
  27.     #[ORM\Column(type'string'length255nullabletrue)]
  28.     private ?string $email null;
  29.     #[ORM\Column(type'string'length255nullabletrue)]
  30.     private ?string $phone null;
  31.     #[ORM\Column(type'text'nullabletrue)]
  32.     private ?string $message null;
  33.     #[ORM\Column(type'string'length255nullabletrue)]
  34.     private ?string $fileCv null;
  35.     #[ORM\Column(type'string'length255nullabletrue)]
  36.     private ?string $fileCover null;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getOffer(): ?Offer
  42.     {
  43.         return $this->offer;
  44.     }
  45.     public function setOffer(?Offer $offer): self
  46.     {
  47.         $this->offer $offer;
  48.         return $this;
  49.     }
  50.     public function getStudyLevel(): ?StudyLevel
  51.     {
  52.         return $this->studyLevel;
  53.     }
  54.     public function setStudyLevel(?StudyLevel $studyLevel): self
  55.     {
  56.         $this->studyLevel $studyLevel;
  57.         return $this;
  58.     }
  59.     public function getStatus(): ?int
  60.     {
  61.         return $this->status;
  62.     }
  63.     public function setStatus(?int $status): self
  64.     {
  65.         $this->status $status;
  66.         return $this;
  67.     }
  68.     public function getFirstName(): ?string
  69.     {
  70.         return $this->firstName;
  71.     }
  72.     public function setFirstName(?string $firstName): self
  73.     {
  74.         $this->firstName $firstName;
  75.         return $this;
  76.     }
  77.     public function getLastName(): ?string
  78.     {
  79.         return $this->lastName;
  80.     }
  81.     public function setLastName(?string $lastName): self
  82.     {
  83.         $this->lastName $lastName;
  84.         return $this;
  85.     }
  86.     public function getGender(): ?bool
  87.     {
  88.         return $this->gender;
  89.     }
  90.     public function setGender(?bool $gender): self
  91.     {
  92.         $this->gender $gender;
  93.         return $this;
  94.     }
  95.     public function getEmail(): ?string
  96.     {
  97.         return $this->email;
  98.     }
  99.     public function setEmail(?string $email): self
  100.     {
  101.         $this->email $email;
  102.         return $this;
  103.     }
  104.     public function getPhone(): ?string
  105.     {
  106.         return $this->phone;
  107.     }
  108.     public function setPhone(?string $phone): self
  109.     {
  110.         $this->phone $phone;
  111.         return $this;
  112.     }
  113.     public function getMessage(): ?string
  114.     {
  115.         return $this->message;
  116.     }
  117.     public function setMessage(?string $message): self
  118.     {
  119.         $this->message $message;
  120.         return $this;
  121.     }
  122.     public function getFileCv(): ?string
  123.     {
  124.         return $this->fileCv;
  125.     }
  126.     public function setFileCv(?string $fileCv): self
  127.     {
  128.         $this->fileCv $fileCv;
  129.         return $this;
  130.     }
  131.     public function getFileCover(): ?string
  132.     {
  133.         return $this->fileCover;
  134.     }
  135.     public function setFileCover(?string $fileCover): self
  136.     {
  137.         $this->fileCover $fileCover;
  138.         return $this;
  139.     }
  140. }