src/Entity/Cvs/CandidatesHasProjects.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 projects
  11.  *
  12.  * @ORM\Table("cvs_candidates_has_projects")
  13.  * @ORM\Entity(repositoryClass="App\Repository\Cvs\CandidatesHasProjectsRepository")
  14.  * @ORM\HasLifecycleCallbacks()
  15.  */
  16. class CandidatesHasProjects
  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="enterprise_name", type="string", length=255, nullable=true)
  60.      */
  61.     private $enterpriseName;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="type_enterprise", type="string", length=255, nullable=true)
  66.      */
  67.     private $typeEnterprise;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="total_month", type="string", length=255, nullable=true)
  72.      */
  73.     private $totalMonth;
  74.     /**
  75.      * @var string
  76.      *
  77.      * @ORM\Column(name="website_url", type="text", nullable=true)
  78.      */
  79.     private $websiteUrl;
  80.     /**
  81.      * @var string
  82.      *
  83.      * @ORM\Column(name="no_anonyme", type="boolean", nullable=true)
  84.      */
  85.     private $noAnonyme;
  86.     /**
  87.      * @var string
  88.      *
  89.      * @ORM\Column(name="online", type="boolean", nullable=true)
  90.      */
  91.     private $online;
  92.     /**
  93.      * @var \Candidates
  94.      *
  95.      * @ORM\ManyToOne(targetEntity="App\Entity\Cvs\Candidates")
  96.      * @ORM\JoinColumns({
  97.      *   @ORM\JoinColumn(name="candidate_id", referencedColumnName="id", nullable=true)
  98.      * })
  99.      */
  100.     protected $candidate;
  101.     /**
  102.      * @ORM\PrePersist
  103.      */
  104.     public function setCreatedAtValue(): void
  105.     {
  106.         $this->setCreatedAt(new \DateTime("now"));
  107.         $this->setUpdatedAt(new \DateTime("now"));
  108.     }
  109.     /**
  110.      * @ORM\PreUpdate
  111.      */
  112.     public function setUpdatedAtValue(): void
  113.     {
  114.         $this->setUpdatedAt(new \DateTime("now"));
  115.     }
  116.     public function __toString()
  117.     {
  118.         return $this->title;
  119.     }
  120.     public function getId(): ?int
  121.     {
  122.         return $this->id;
  123.     }
  124.     public function getCreatedAt(): ?\DateTimeInterface
  125.     {
  126.         return $this->createdAt;
  127.     }
  128.     public function setCreatedAt(?\DateTimeInterface $createdAt): static
  129.     {
  130.         $this->createdAt $createdAt;
  131.         return $this;
  132.     }
  133.     public function getUpdatedAt(): ?\DateTimeInterface
  134.     {
  135.         return $this->updatedAt;
  136.     }
  137.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): static
  138.     {
  139.         $this->updatedAt $updatedAt;
  140.         return $this;
  141.     }
  142.     public function getTitle(): ?string
  143.     {
  144.         return $this->title;
  145.     }
  146.     public function setTitle(?string $title): static
  147.     {
  148.         $this->title $title;
  149.         return $this;
  150.     }
  151.     public function getDescriptionAnonyme(): ?string
  152.     {
  153.         return $this->descriptionAnonyme;
  154.     }
  155.     public function setDescriptionAnonyme(?string $descriptionAnonyme): static
  156.     {
  157.         $this->descriptionAnonyme $descriptionAnonyme;
  158.         return $this;
  159.     }
  160.     public function getDescription(): ?string
  161.     {
  162.         return $this->description;
  163.     }
  164.     public function setDescription(?string $description): static
  165.     {
  166.         $this->description $description;
  167.         return $this;
  168.     }
  169.     public function getEnterpriseName(): ?string
  170.     {
  171.         return $this->enterpriseName;
  172.     }
  173.     public function setEnterpriseName(?string $enterpriseName): static
  174.     {
  175.         $this->enterpriseName $enterpriseName;
  176.         return $this;
  177.     }
  178.     public function getTypeEnterprise(): ?string
  179.     {
  180.         return $this->typeEnterprise;
  181.     }
  182.     public function setTypeEnterprise(?string $typeEnterprise): static
  183.     {
  184.         $this->typeEnterprise $typeEnterprise;
  185.         return $this;
  186.     }
  187.     public function getTotalMonth(): ?string
  188.     {
  189.         return $this->totalMonth;
  190.     }
  191.     public function setTotalMonth(?string $totalMonth): static
  192.     {
  193.         $this->totalMonth $totalMonth;
  194.         return $this;
  195.     }
  196.     public function getWebsiteUrl(): ?string
  197.     {
  198.         return $this->websiteUrl;
  199.     }
  200.     public function setWebsiteUrl(?string $websiteUrl): static
  201.     {
  202.         $this->websiteUrl $websiteUrl;
  203.         return $this;
  204.     }
  205.     public function isNoAnonyme(): ?bool
  206.     {
  207.         return $this->noAnonyme;
  208.     }
  209.     public function setNoAnonyme(?bool $noAnonyme): static
  210.     {
  211.         $this->noAnonyme $noAnonyme;
  212.         return $this;
  213.     }
  214.     public function isOnline(): ?bool
  215.     {
  216.         return $this->online;
  217.     }
  218.     public function setOnline(?bool $online): static
  219.     {
  220.         $this->online $online;
  221.         return $this;
  222.     }
  223.     public function getCandidate(): ?Candidates
  224.     {
  225.         return $this->candidate;
  226.     }
  227.     public function setCandidate(?Candidates $candidate): static
  228.     {
  229.         $this->candidate $candidate;
  230.         return $this;
  231.     }
  232. }