src/Entity/LignePvCompetence.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LignePvCompetenceRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=LignePvCompetenceRepository::class)
  7.  */
  8. class LignePvCompetence
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Inscrit::class)
  18.      */
  19.     private $inscrit;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity=EntetePvCompetence::class, inversedBy="lignePvCompetences")
  22.      */
  23.     private $entetepvcompetence;
  24.     /**
  25.      * @ORM\Column(type="datetime_immutable", nullable=true)
  26.      */
  27.     private $created_at;
  28.     /**
  29.      * @ORM\Column(type="datetime_immutable", nullable=true)
  30.      */
  31.     private $updated_at;
  32.     /**
  33.      * @ORM\Column(type="float", nullable=true)
  34.      */
  35.     private $uc1;
  36.     /**
  37.      * @ORM\Column(type="float", nullable=true)
  38.      */
  39.     private $uc2;
  40.     /**
  41.      * @ORM\Column(type="float", nullable=true)
  42.      */
  43.     private $uc3;
  44.     /**
  45.      * @ORM\Column(type="float", nullable=true)
  46.      */
  47.     private $uc4;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $decisionfinale;
  52.     /**
  53.      * @ORM\Column(type="text", nullable=true)
  54.      */
  55.     private $observation;
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getInscrit(): ?Inscrit
  61.     {
  62.         return $this->inscrit;
  63.     }
  64.     public function setInscrit(?Inscrit $inscrit): self
  65.     {
  66.         $this->inscrit $inscrit;
  67.         return $this;
  68.     }
  69.     public function getEntetepvcompetence(): ?EntetePvCompetence
  70.     {
  71.         return $this->entetepvcompetence;
  72.     }
  73.     public function setEntetepvcompetence(?EntetePvCompetence $entetepvcompetence): self
  74.     {
  75.         $this->entetepvcompetence $entetepvcompetence;
  76.         return $this;
  77.     }
  78.     public function getCreatedAt(): ?\DateTimeImmutable
  79.     {
  80.         return $this->created_at;
  81.     }
  82.     public function setCreatedAt(?\DateTimeImmutable $created_at): self
  83.     {
  84.         $this->created_at $created_at;
  85.         return $this;
  86.     }
  87.     public function getUpdatedAt(): ?\DateTimeImmutable
  88.     {
  89.         return $this->updated_at;
  90.     }
  91.     public function setUpdatedAt(?\DateTimeImmutable $updated_at): self
  92.     {
  93.         $this->updated_at $updated_at;
  94.         return $this;
  95.     }
  96.     public function getUc1(): ?float
  97.     {
  98.         return $this->uc1;
  99.     }
  100.     public function setUc1(?float $uc1): self
  101.     {
  102.         $this->uc1 $uc1;
  103.         return $this;
  104.     }
  105.     public function getUc2(): ?float
  106.     {
  107.         return $this->uc2;
  108.     }
  109.     public function setUc2(?float $uc2): self
  110.     {
  111.         $this->uc2 $uc2;
  112.         return $this;
  113.     }
  114.     public function getUc3(): ?float
  115.     {
  116.         return $this->uc3;
  117.     }
  118.     public function setUc3(?float $uc3): self
  119.     {
  120.         $this->uc3 $uc3;
  121.         return $this;
  122.     }
  123.     public function getUc4(): ?float
  124.     {
  125.         return $this->uc4;
  126.     }
  127.     public function setUc4(?float $uc4): self
  128.     {
  129.         $this->uc4 $uc4;
  130.         return $this;
  131.     }
  132.     public function getDecisionfinale(): ?string
  133.     {
  134.         return $this->decisionfinale;
  135.     }
  136.     public function setDecisionfinale(?string $decisionfinale): self
  137.     {
  138.         $this->decisionfinale $decisionfinale;
  139.         return $this;
  140.     }
  141.     public function getObservation(): ?string
  142.     {
  143.         return $this->observation;
  144.     }
  145.     public function setObservation(?string $observation): self
  146.     {
  147.         $this->observation $observation;
  148.         return $this;
  149.     }
  150. }