src/Entity/CompetenceSstInitial.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CompetenceSstInitialRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=CompetenceSstInitialRepository::class)
  7.  */
  8. class CompetenceSstInitial
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="boolean", nullable=true)
  18.      */
  19.     private $c21;
  20.     /**
  21.      * @ORM\Column(type="boolean", nullable=true)
  22.      */
  23.     private $c22;
  24.     /**
  25.      * @ORM\Column(type="boolean", nullable=true)
  26.      */
  27.     private $c23;
  28.     /**
  29.      * @ORM\Column(type="boolean", nullable=true)
  30.      */
  31.     private $c24;
  32.     /**
  33.      * @ORM\Column(type="boolean", nullable=true)
  34.      */
  35.     private $c25;
  36.     /**
  37.      * @ORM\Column(type="boolean", nullable=true)
  38.      */
  39.     private $c31;
  40.     /**
  41.      * @ORM\Column(type="boolean", nullable=true)
  42.      */
  43.     private $c32;
  44.     /**
  45.      * @ORM\Column(type="boolean", nullable=true)
  46.      */
  47.     private $c41;
  48.     /**
  49.      * @ORM\Column(type="boolean", nullable=true)
  50.      */
  51.     private $c42;
  52.     /**
  53.      * @ORM\Column(type="boolean", nullable=true)
  54.      */
  55.     private $c51;
  56.     /**
  57.      * @ORM\Column(type="boolean", nullable=true)
  58.      */
  59.     private $c52;
  60.     /**
  61.      * @ORM\Column(type="boolean", nullable=true)
  62.      */
  63.     private $c53;
  64.     /**
  65.      * @ORM\Column(type="boolean", nullable=true)
  66.      */
  67.     private $c1;
  68.     /**
  69.      * @ORM\Column(type="boolean", nullable=true)
  70.      */
  71.     private $c6;
  72.     /**
  73.      * @ORM\Column(type="boolean", nullable=true)
  74.      */
  75.     private $c7;
  76.     /**
  77.      * @ORM\Column(type="boolean", nullable=true)
  78.      */
  79.     private $c81;
  80.     /**
  81.      * @ORM\Column(type="boolean", nullable=true)
  82.      */
  83.     private $c82;
  84.     /**
  85.      * @ORM\Column(type="boolean", nullable=true)
  86.      */
  87.     private $competence1;
  88.     /**
  89.      * @ORM\Column(type="boolean", nullable=true)
  90.      */
  91.     private $competence2;
  92.     /**
  93.      * @ORM\Column(type="boolean", nullable=true)
  94.      */
  95.     private $competence3;
  96.     /**
  97.      * @ORM\Column(type="boolean", nullable=true)
  98.      */
  99.     private $competence4;
  100.     /**
  101.      * @ORM\Column(type="boolean", nullable=true)
  102.      */
  103.     private $competence5;
  104.     /**
  105.      * @ORM\Column(type="boolean", nullable=true)
  106.      */
  107.     private $competence6;
  108.     /**
  109.      * @ORM\Column(type="boolean", nullable=true)
  110.      */
  111.     private $competence7;
  112.     /**
  113.      * @ORM\Column(type="boolean", nullable=true)
  114.      */
  115.     private $competence8;
  116.     /**
  117.      * @ORM\Column(type="boolean", nullable=true)
  118.      */
  119.     private $certifie;
  120.     /**
  121.      * @ORM\Column(type="date", nullable=true)
  122.      */
  123.     private $datecertification;
  124.     /**
  125.      * @ORM\Column(type="text", nullable=true)
  126.      */
  127.     private $signatureformateur;
  128.     /**
  129.      * @ORM\OneToOne(targetEntity=Inscrit::class, inversedBy="competenceSstInitial", cascade={"persist", "remove"})
  130.      */
  131.     private $inscrit;
  132.     /**
  133.      * @ORM\Column(type="datetime_immutable", nullable=true)
  134.      */
  135.     private $created_at;
  136.     public function getId(): ?int
  137.     {
  138.         return $this->id;
  139.     }
  140.     public function isC21(): ?bool
  141.     {
  142.         return $this->c21;
  143.     }
  144.     public function setC21(?bool $c21): self
  145.     {
  146.         $this->c21 $c21;
  147.         return $this;
  148.     }
  149.     public function isC22(): ?bool
  150.     {
  151.         return $this->c22;
  152.     }
  153.     public function setC22(?bool $c22): self
  154.     {
  155.         $this->c22 $c22;
  156.         return $this;
  157.     }
  158.     public function isC23(): ?bool
  159.     {
  160.         return $this->c23;
  161.     }
  162.     public function setC23(?bool $c23): self
  163.     {
  164.         $this->c23 $c23;
  165.         return $this;
  166.     }
  167.     public function isC24(): ?bool
  168.     {
  169.         return $this->c24;
  170.     }
  171.     public function setC24(?bool $c24): self
  172.     {
  173.         $this->c24 $c24;
  174.         return $this;
  175.     }
  176.     public function isC25(): ?bool
  177.     {
  178.         return $this->c25;
  179.     }
  180.     public function setC25(?bool $c25): self
  181.     {
  182.         $this->c25 $c25;
  183.         return $this;
  184.     }
  185.     public function isC31(): ?bool
  186.     {
  187.         return $this->c31;
  188.     }
  189.     public function setC31(?bool $c31): self
  190.     {
  191.         $this->c31 $c31;
  192.         return $this;
  193.     }
  194.     public function isC32(): ?bool
  195.     {
  196.         return $this->c32;
  197.     }
  198.     public function setC32(?bool $c32): self
  199.     {
  200.         $this->c32 $c32;
  201.         return $this;
  202.     }
  203.     public function isC41(): ?bool
  204.     {
  205.         return $this->c41;
  206.     }
  207.     public function setC41(?bool $c41): self
  208.     {
  209.         $this->c41 $c41;
  210.         return $this;
  211.     }
  212.     public function isC42(): ?bool
  213.     {
  214.         return $this->c42;
  215.     }
  216.     public function setC42(?bool $c42): self
  217.     {
  218.         $this->c42 $c42;
  219.         return $this;
  220.     }
  221.     public function isC51(): ?bool
  222.     {
  223.         return $this->c51;
  224.     }
  225.     public function setC51(?bool $c51): self
  226.     {
  227.         $this->c51 $c51;
  228.         return $this;
  229.     }
  230.     public function isC52(): ?bool
  231.     {
  232.         return $this->c52;
  233.     }
  234.     public function setC52(?bool $c52): self
  235.     {
  236.         $this->c52 $c52;
  237.         return $this;
  238.     }
  239.     public function isC53(): ?bool
  240.     {
  241.         return $this->c53;
  242.     }
  243.     public function setC53(?bool $c53): self
  244.     {
  245.         $this->c53 $c53;
  246.         return $this;
  247.     }
  248.     public function isC1(): ?bool
  249.     {
  250.         return $this->c1;
  251.     }
  252.     public function setC1(?bool $c1): self
  253.     {
  254.         $this->c1 $c1;
  255.         return $this;
  256.     }
  257.     public function isC6(): ?bool
  258.     {
  259.         return $this->c6;
  260.     }
  261.     public function setC6(?bool $c6): self
  262.     {
  263.         $this->c6 $c6;
  264.         return $this;
  265.     }
  266.     public function isC7(): ?bool
  267.     {
  268.         return $this->c7;
  269.     }
  270.     public function setC7(?bool $c7): self
  271.     {
  272.         $this->c7 $c7;
  273.         return $this;
  274.     }
  275.     public function isC81(): ?bool
  276.     {
  277.         return $this->c81;
  278.     }
  279.     public function setC81(?bool $c81): self
  280.     {
  281.         $this->c81 $c81;
  282.         return $this;
  283.     }
  284.     public function isC82(): ?bool
  285.     {
  286.         return $this->c82;
  287.     }
  288.     public function setC82(?bool $c82): self
  289.     {
  290.         $this->c82 $c82;
  291.         return $this;
  292.     }
  293.     public function isCompetence1(): ?bool
  294.     {
  295.         return $this->competence1;
  296.     }
  297.     public function setCompetence1(?bool $competence1): self
  298.     {
  299.         $this->competence1 $competence1;
  300.         return $this;
  301.     }
  302.     public function isCompetence2(): ?bool
  303.     {
  304.         return $this->competence2;
  305.     }
  306.     public function setCompetence2(?bool $competence2): self
  307.     {
  308.         $this->competence2 $competence2;
  309.         return $this;
  310.     }
  311.     public function isCompetence3(): ?bool
  312.     {
  313.         return $this->competence3;
  314.     }
  315.     public function setCompetence3(?bool $competence3): self
  316.     {
  317.         $this->competence3 $competence3;
  318.         return $this;
  319.     }
  320.     public function isCompetence4(): ?bool
  321.     {
  322.         return $this->competence4;
  323.     }
  324.     public function setCompetence4(?bool $competence4): self
  325.     {
  326.         $this->competence4 $competence4;
  327.         return $this;
  328.     }
  329.     public function isCompetence5(): ?bool
  330.     {
  331.         return $this->competence5;
  332.     }
  333.     public function setCompetence5(?bool $competence5): self
  334.     {
  335.         $this->competence5 $competence5;
  336.         return $this;
  337.     }
  338.     public function isCompetence6(): ?bool
  339.     {
  340.         return $this->competence6;
  341.     }
  342.     public function setCompetence6(?bool $competence6): self
  343.     {
  344.         $this->competence6 $competence6;
  345.         return $this;
  346.     }
  347.     public function isCompetence7(): ?bool
  348.     {
  349.         return $this->competence7;
  350.     }
  351.     public function setCompetence7(?bool $competence7): self
  352.     {
  353.         $this->competence7 $competence7;
  354.         return $this;
  355.     }
  356.     public function isCompetence8(): ?bool
  357.     {
  358.         return $this->competence8;
  359.     }
  360.     public function setCompetence8(?bool $competence8): self
  361.     {
  362.         $this->competence8 $competence8;
  363.         return $this;
  364.     }
  365.     public function isCertifie(): ?bool
  366.     {
  367.         return $this->certifie;
  368.     }
  369.     public function setCertifie(?bool $certifie): self
  370.     {
  371.         $this->certifie $certifie;
  372.         return $this;
  373.     }
  374.     public function getDatecertification(): ?\DateTimeInterface
  375.     {
  376.         return $this->datecertification;
  377.     }
  378.     public function setDatecertification(?\DateTimeInterface $datecertification): self
  379.     {
  380.         $this->datecertification $datecertification;
  381.         return $this;
  382.     }
  383.     public function getSignatureformateur(): ?string
  384.     {
  385.         return $this->signatureformateur;
  386.     }
  387.     public function setSignatureformateur(?string $signatureformateur): self
  388.     {
  389.         $this->signatureformateur $signatureformateur;
  390.         return $this;
  391.     }
  392.     public function getInscrit(): ?Inscrit
  393.     {
  394.         return $this->inscrit;
  395.     }
  396.     public function setInscrit(?Inscrit $inscrit): self
  397.     {
  398.         $this->inscrit $inscrit;
  399.         return $this;
  400.     }
  401.     public function getCreatedAt(): ?\DateTimeImmutable
  402.     {
  403.         return $this->created_at;
  404.     }
  405.     public function setCreatedAt(?\DateTimeImmutable $created_at): self
  406.     {
  407.         $this->created_at $created_at;
  408.         return $this;
  409.     }
  410. }