src/Entity/Cvs/CandidatesHasServices.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 services
  11.  *
  12.  * @ORM\Table("cvs_candidates_has_services")
  13.  * @ORM\Entity(repositoryClass="App\Repository\Cvs\CandidatesHasServicesRepository")
  14.  * @ORM\HasLifecycleCallbacks()
  15.  */
  16. class CandidatesHasServices
  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_anonyme", type="text", nullable=true)
  48.      */
  49.     private $descriptionAnonyme;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="description", type="text", nullable=true)
  54.      */
  55.     private $description;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="online", type="boolean", nullable=true)
  60.      */
  61.     private $online;
  62.     /**
  63.      * @var \Candidates
  64.      *
  65.      * @ORM\ManyToOne(targetEntity="App\Entity\Cvs\Candidates")
  66.      * @ORM\JoinColumns({
  67.      *   @ORM\JoinColumn(name="candidate_id", referencedColumnName="id", nullable=true)
  68.      * })
  69.      */
  70.     protected $candidate;
  71.     /**
  72.      * @ORM\PrePersist
  73.      */
  74.     public function setCreatedAtValue(): void
  75.     {
  76.         $this->setCreatedAt(new \DateTime("now"));
  77.         $this->setUpdatedAt(new \DateTime("now"));
  78.     }
  79.     /**
  80.      * @ORM\PreUpdate
  81.      */
  82.     public function setUpdatedAtValue(): void
  83.     {
  84.         $this->setUpdatedAt(new \DateTime("now"));
  85.     }
  86.     public function __toString()
  87.     {
  88.         return $this->title;
  89.     }
  90.     public function getId(): ?int
  91.     {
  92.         return $this->id;
  93.     }
  94.     public function getCreatedAt(): ?\DateTimeInterface
  95.     {
  96.         return $this->createdAt;
  97.     }
  98.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  99.     {
  100.         $this->createdAt $createdAt;
  101.         return $this;
  102.     }
  103.     public function getUpdatedAt(): ?\DateTimeInterface
  104.     {
  105.         return $this->updatedAt;
  106.     }
  107.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  108.     {
  109.         $this->updatedAt $updatedAt;
  110.         return $this;
  111.     }
  112.     public function getTitle(): ?string
  113.     {
  114.         return $this->title;
  115.     }
  116.     public function setTitle(?string $title): self
  117.     {
  118.         $this->title $title;
  119.         return $this;
  120.     }
  121.     public function getDescriptionAnonyme(): ?string
  122.     {
  123.         return $this->descriptionAnonyme;
  124.     }
  125.     public function setDescriptionAnonyme(?string $descriptionAnonyme): self
  126.     {
  127.         $this->descriptionAnonyme $descriptionAnonyme;
  128.         return $this;
  129.     }
  130.     public function getDescription(): ?string
  131.     {
  132.         return $this->description;
  133.     }
  134.     public function setDescription(?string $description): self
  135.     {
  136.         $this->description $description;
  137.         return $this;
  138.     }
  139.     public function getOnline(): ?bool
  140.     {
  141.         return $this->online;
  142.     }
  143.     public function setOnline(?bool $online): self
  144.     {
  145.         $this->online $online;
  146.         return $this;
  147.     }
  148.     public function getCandidate(): ?Candidates
  149.     {
  150.         return $this->candidate;
  151.     }
  152.     public function setCandidate(?Candidates $candidate): self
  153.     {
  154.         $this->candidate $candidate;
  155.         return $this;
  156.     }
  157.     public function isOnline(): ?bool
  158.     {
  159.         return $this->online;
  160.     }
  161.     
  162. }