src/Entity/Candidature.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CandidatureRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=CandidatureRepository::class)
  7.  */
  8. class Candidature
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $cv;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $lettreMotivation;
  24.     /**
  25.      * @ORM\Column(type="text", nullable=true)
  26.      */
  27.     private $commentaire;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity="User")
  30.      */
  31.     private $user;
  32.     /**
  33.      * @ORM\ManyToOne(targetEntity="Offer")
  34.      */
  35.     private $offer;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getCv(): ?string
  41.     {
  42.         return $this->cv;
  43.     }
  44.     public function setCv(string $cv): self
  45.     {
  46.         $this->cv $cv;
  47.         return $this;
  48.     }
  49.     public function getLettreMotivation(): ?string
  50.     {
  51.         return $this->lettreMotivation;
  52.     }
  53.     public function setLettreMotivation(string $lettreMotivation): self
  54.     {
  55.         $this->lettreMotivation $lettreMotivation;
  56.         return $this;
  57.     }
  58.     public function getCommentaire(): ?string
  59.     {
  60.         return $this->commentaire;
  61.     }
  62.     public function setCommentaire(?string $commentaire): self
  63.     {
  64.         $this->commentaire $commentaire;
  65.         return $this;
  66.     }
  67.     /**
  68.      * @return mixed
  69.      */
  70.     public function getUser()
  71.     {
  72.         return $this->user;
  73.     }
  74.     /**
  75.      * @param mixed $user
  76.      */
  77.     public function setUser($user): void
  78.     {
  79.         $this->user $user;
  80.     }
  81.     /**
  82.      * @return mixed
  83.      */
  84.     public function getOffer()
  85.     {
  86.         return $this->offer;
  87.     }
  88.     /**
  89.      * @param mixed $offer
  90.      */
  91.     public function setOffer($offer): void
  92.     {
  93.         $this->offer $offer;
  94.     }
  95. }