src/Entity/Cvs/CandidatesHasExperiences.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 experiences
  11.  *
  12.  * @ORM\Table("cvs_candidates_has_experiences")
  13.  * @ORM\Entity(repositoryClass="App\Repository\Cvs\CandidatesHasExperiencesRepository")
  14.  * @ORM\HasLifecycleCallbacks()
  15.  */
  16. class CandidatesHasExperiences
  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="start", type="date", nullable=true, options={"comment":"Date de début"})
  42.      */
  43.     private $start;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="end", type="date", nullable=true, options={"comment":"Date de début"})
  48.      */
  49.     private $end;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="today", type="boolean", nullable=true)
  54.      */
  55.     private $today;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="title", type="string", length=255, nullable=true)
  60.      */
  61.     private $title;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="description_anonyme", type="text", nullable=true)
  66.      */
  67.     private $descriptionAnonyme;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="description", type="text", nullable=true)
  72.      */
  73.     private $description;
  74.     /**
  75.      * @var string
  76.      *
  77.      * @ORM\Column(name="enterprise_name", type="string", length=255, nullable=true)
  78.      */
  79.     private $enterpriseName;
  80.     /**
  81.      * @var string
  82.      *
  83.      * @ORM\Column(name="type_enterprise", type="string", length=255, nullable=true)
  84.      */
  85.     private $typeEnterprise;
  86.     /**
  87.      * @var string
  88.      *
  89.      * @ORM\Column(name="school_name", type="string", length=255, nullable=true)
  90.      */
  91.     private $schoolName;
  92.     /**
  93.      * @var string
  94.      *
  95.      * @ORM\Column(name="diploma", type="boolean", nullable=true)
  96.      */
  97.     private $diploma;
  98.     /**
  99.      * @var string
  100.      *
  101.      * @ORM\Column(name="no_anonyme", type="boolean", nullable=true)
  102.      */
  103.     private $noAnonyme;
  104.     /**
  105.      * @var string
  106.      *
  107.      * @ORM\Column(name="online", type="boolean", nullable=true)
  108.      */
  109.     private $online;
  110.     /**
  111.      * @var \Candidates
  112.      *
  113.      * @ORM\ManyToOne(targetEntity="App\Entity\Cvs\Candidates")
  114.      * @ORM\JoinColumns({
  115.      *   @ORM\JoinColumn(name="candidate_id", referencedColumnName="id", nullable=true)
  116.      * })
  117.      */
  118.     protected $candidate;
  119.     /**
  120.      * @ORM\PrePersist
  121.      */
  122.     public function setCreatedAtValue(): void
  123.     {
  124.         $this->setCreatedAt(new \DateTime("now"));
  125.         $this->setUpdatedAt(new \DateTime("now"));
  126.     }
  127.     /**
  128.      * @ORM\PreUpdate
  129.      */
  130.     public function setUpdatedAtValue(): void
  131.     {
  132.         $this->setUpdatedAt(new \DateTime("now"));
  133.     }
  134.     public function __toString()
  135.     {
  136.         return $this->title;
  137.     }
  138.     public function getId(): ?int
  139.     {
  140.         return $this->id;
  141.     }
  142.     public function getCreatedAt(): ?\DateTimeInterface
  143.     {
  144.         return $this->createdAt;
  145.     }
  146.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  147.     {
  148.         $this->createdAt $createdAt;
  149.         return $this;
  150.     }
  151.     public function getUpdatedAt(): ?\DateTimeInterface
  152.     {
  153.         return $this->updatedAt;
  154.     }
  155.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  156.     {
  157.         $this->updatedAt $updatedAt;
  158.         return $this;
  159.     }
  160.     public function getStart(): ?\DateTimeInterface
  161.     {
  162.         return $this->start;
  163.     }
  164.     public function setStart(?\DateTimeInterface $start): self
  165.     {
  166.         $this->start $start;
  167.         return $this;
  168.     }
  169.     public function getEnd(): ?\DateTimeInterface
  170.     {
  171.         return $this->end;
  172.     }
  173.     public function setEnd(?\DateTimeInterface $end): self
  174.     {
  175.         $this->end $end;
  176.         return $this;
  177.     }
  178.     public function getToday(): ?bool
  179.     {
  180.         return $this->today;
  181.     }
  182.     public function setToday(?bool $today): self
  183.     {
  184.         $this->today $today;
  185.         return $this;
  186.     }
  187.     public function getTitle(): ?string
  188.     {
  189.         return $this->title;
  190.     }
  191.     public function setTitle(?string $title): self
  192.     {
  193.         $this->title $title;
  194.         return $this;
  195.     }
  196.     public function getDescriptionAnonyme(): ?string
  197.     {
  198.         return $this->descriptionAnonyme;
  199.     }
  200.     public function setDescriptionAnonyme(?string $descriptionAnonyme): self
  201.     {
  202.         $this->descriptionAnonyme $descriptionAnonyme;
  203.         return $this;
  204.     }
  205.     public function getDescription(): ?string
  206.     {
  207.         return $this->description;
  208.     }
  209.     public function setDescription(?string $description): self
  210.     {
  211.         $this->description $description;
  212.         return $this;
  213.     }
  214.     public function getEnterpriseName(): ?string
  215.     {
  216.         return $this->enterpriseName;
  217.     }
  218.     public function setEnterpriseName(?string $enterpriseName): self
  219.     {
  220.         $this->enterpriseName $enterpriseName;
  221.         return $this;
  222.     }
  223.     public function getTypeEnterprise(): ?string
  224.     {
  225.         return $this->typeEnterprise;
  226.     }
  227.     public function setTypeEnterprise(?string $typeEnterprise): self
  228.     {
  229.         $this->typeEnterprise $typeEnterprise;
  230.         return $this;
  231.     }
  232.     public function getSchoolName(): ?string
  233.     {
  234.         return $this->schoolName;
  235.     }
  236.     public function setSchoolName(?string $schoolName): self
  237.     {
  238.         $this->schoolName $schoolName;
  239.         return $this;
  240.     }
  241.     public function getDiploma(): ?bool
  242.     {
  243.         return $this->diploma;
  244.     }
  245.     public function setDiploma(?bool $diploma): self
  246.     {
  247.         $this->diploma $diploma;
  248.         return $this;
  249.     }
  250.     public function getNoAnonyme(): ?bool
  251.     {
  252.         return $this->noAnonyme;
  253.     }
  254.     public function setNoAnonyme(?bool $noAnonyme): self
  255.     {
  256.         $this->noAnonyme $noAnonyme;
  257.         return $this;
  258.     }
  259.     public function getOnline(): ?bool
  260.     {
  261.         return $this->online;
  262.     }
  263.     public function setOnline(?bool $online): self
  264.     {
  265.         $this->online $online;
  266.         return $this;
  267.     }
  268.     public function getCandidate(): ?Candidates
  269.     {
  270.         return $this->candidate;
  271.     }
  272.     public function setCandidate(?Candidates $candidate): self
  273.     {
  274.         $this->candidate $candidate;
  275.         return $this;
  276.     }
  277.     public function isToday(): ?bool
  278.     {
  279.         return $this->today;
  280.     }
  281.     public function isDiploma(): ?bool
  282.     {
  283.         return $this->diploma;
  284.     }
  285.     public function isNoAnonyme(): ?bool
  286.     {
  287.         return $this->noAnonyme;
  288.     }
  289.     public function isOnline(): ?bool
  290.     {
  291.         return $this->online;
  292.     }
  293. }