src/Entity/Cvs/CandidatesHasSkills.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Cvs;
  3. use App\Entity\Core\Users;
  4. use App\Entity\Core\Agencies;
  5. use Doctrine\DBAL\Types\Types;
  6. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  7. use Symfony\Component\Validator\Constraints as Assert;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * Candidates has skills
  11.  *
  12.  * @ORM\Table("cvs_candidates_has_skills")
  13.  * @ORM\Entity(repositoryClass="App\Repository\Cvs\CandidatesHasSkillsRepository")
  14.  * @ORM\HasLifecycleCallbacks()
  15.  */
  16. class CandidatesHasSkills
  17. {
  18.     /**
  19.      * @var integer
  20.      *
  21.      * @ORM\Column(name="id", type="integer")
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue(strategy="AUTO")
  24.      */
  25.     protected $id;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="created_at", type="datetime", nullable=true, options={"comment":"Date de création"})
  30.      */
  31.     private $createdAt;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="updated_at", type="datetime", nullable=true, options={"comment":"Date de mise à jour"})
  36.      */
  37.     private $updatedAt;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="title", type="string", length=255, nullable=true)
  42.      */
  43.     private $title;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="description", type="string", length=255, nullable=true)
  48.      */
  49.     private $description;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="fav", type="boolean", nullable=true)
  54.      */
  55.     private $fav;
  56.     /**
  57.      * @var \Candidates
  58.      *
  59.      * @ORM\ManyToOne(targetEntity="App\Entity\Cvs\Candidates")
  60.      * @ORM\JoinColumns({
  61.      *   @ORM\JoinColumn(name="candidate_id", referencedColumnName="id", nullable=true)
  62.      * })
  63.      */
  64.     protected $candidate;
  65.     /**
  66.      * @ORM\PrePersist
  67.      */
  68.     public function setCreatedAtValue(): void
  69.     {
  70.         $this->setCreatedAt(new \DateTime("now"));
  71.         $this->setUpdatedAt(new \DateTime("now"));
  72.     }
  73.     /**
  74.      * @ORM\PreUpdate
  75.      */
  76.     public function setUpdatedAtValue(): void
  77.     {
  78.         $this->setUpdatedAt(new \DateTime("now"));
  79.     }
  80.     public function __toString()
  81.     {
  82.         return $this->title;
  83.     }
  84.     public function getId(): ?int
  85.     {
  86.         return $this->id;
  87.     }
  88.     public function getCreatedAt(): ?\DateTimeInterface
  89.     {
  90.         return $this->createdAt;
  91.     }
  92.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  93.     {
  94.         $this->createdAt $createdAt;
  95.         return $this;
  96.     }
  97.     public function getUpdatedAt(): ?\DateTimeInterface
  98.     {
  99.         return $this->updatedAt;
  100.     }
  101.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  102.     {
  103.         $this->updatedAt $updatedAt;
  104.         return $this;
  105.     }
  106.     public function getTitle(): ?string
  107.     {
  108.         return $this->title;
  109.     }
  110.     public function setTitle(?string $title): self
  111.     {
  112.         $this->title $title;
  113.         return $this;
  114.     }
  115.     public function getDescription(): ?string
  116.     {
  117.         return $this->description;
  118.     }
  119.     public function setDescription(?string $description): self
  120.     {
  121.         $this->description $description;
  122.         return $this;
  123.     }
  124.     public function getFav(): ?bool
  125.     {
  126.         return $this->fav;
  127.     }
  128.     public function setFav(?bool $fav): self
  129.     {
  130.         $this->fav $fav;
  131.         return $this;
  132.     }
  133.     public function getCandidate(): ?Candidates
  134.     {
  135.         return $this->candidate;
  136.     }
  137.     public function setCandidate(?Candidates $candidate): self
  138.     {
  139.         $this->candidate $candidate;
  140.         return $this;
  141.     }
  142.     public function isFav(): ?bool
  143.     {
  144.         return $this->fav;
  145.     }
  146. }