src/Entity/EnqueteJ30.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EnqueteJ30Repository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EnqueteJ30Repository::class)
  7.  */
  8. class EnqueteJ30
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="boolean")
  18.      */
  19.     private $prendreconfiance;
  20.     /**
  21.      * @ORM\Column(type="boolean")
  22.      */
  23.     private $trouvertravail;
  24.     /**
  25.      * @ORM\Column(type="boolean")
  26.      */
  27.     private $ameliorerqualite;
  28.     /**
  29.      * @ORM\Column(type="boolean")
  30.      */
  31.     private $facilitequotidien;
  32.     /**
  33.      * @ORM\Column(type="boolean")
  34.      */
  35.     private $developpernouvelle;
  36.     /**
  37.      * @ORM\Column(type="text")
  38.      */
  39.     private $autre;
  40.     /**
  41.      * @ORM\Column(type="boolean")
  42.      */
  43.     private $formationdiplomecertification;
  44.     /**
  45.      * @ORM\Column(type="boolean", nullable=true)
  46.      */
  47.     private $obtenudiplomecertification;
  48.     /**
  49.      * @ORM\Column(type="text", nullable=true)
  50.      */
  51.     private $sinonraison;
  52.     /**
  53.      * @ORM\Column(type="integer")
  54.      */
  55.     private $formationattenteinitiale;
  56.     /**
  57.      * @ORM\Column(type="integer")
  58.      */
  59.     private $atteintobjectif;
  60.     /**
  61.      * @ORM\Column(type="integer")
  62.      */
  63.     private $formationadequation;
  64.     /**
  65.      * @ORM\Column(type="integer")
  66.      */
  67.     private $recommandationformation;
  68.     /**
  69.      * @ORM\Column(type="text", nullable=true)
  70.      */
  71.     private $elementplusapprecie;
  72.     /**
  73.      * @ORM\Column(type="text", nullable=true)
  74.      */
  75.     private $elementmoinsapprecie;
  76.     /**
  77.      * @ORM\Column(type="text", nullable=true)
  78.      */
  79.     private $remarquesuggestion;
  80.     /**
  81.      * @ORM\ManyToOne(targetEntity=Inscrit::class, inversedBy="enqueteJ30s")
  82.      * @ORM\JoinColumn(nullable=false)
  83.      */
  84.     private $inscrit;
  85.     public function getId(): ?int
  86.     {
  87.         return $this->id;
  88.     }
  89.     public function isPrendreconfiance(): ?bool
  90.     {
  91.         return $this->prendreconfiance;
  92.     }
  93.     public function setPrendreconfiance(bool $prendreconfiance): self
  94.     {
  95.         $this->prendreconfiance $prendreconfiance;
  96.         return $this;
  97.     }
  98.     public function isTrouvertravail(): ?bool
  99.     {
  100.         return $this->trouvertravail;
  101.     }
  102.     public function setTrouvertravail(bool $trouvertravail): self
  103.     {
  104.         $this->trouvertravail $trouvertravail;
  105.         return $this;
  106.     }
  107.     public function isAmeliorerqualite(): ?bool
  108.     {
  109.         return $this->ameliorerqualite;
  110.     }
  111.     public function setAmeliorerqualite(bool $ameliorerqualite): self
  112.     {
  113.         $this->ameliorerqualite $ameliorerqualite;
  114.         return $this;
  115.     }
  116.     public function isFacilitequotidien(): ?bool
  117.     {
  118.         return $this->facilitequotidien;
  119.     }
  120.     public function setFacilitequotidien(bool $facilitequotidien): self
  121.     {
  122.         $this->facilitequotidien $facilitequotidien;
  123.         return $this;
  124.     }
  125.     public function isDeveloppernouvelle(): ?bool
  126.     {
  127.         return $this->developpernouvelle;
  128.     }
  129.     public function setDeveloppernouvelle(bool $developpernouvelle): self
  130.     {
  131.         $this->developpernouvelle $developpernouvelle;
  132.         return $this;
  133.     }
  134.     public function getAutre(): ?string
  135.     {
  136.         return $this->autre;
  137.     }
  138.     public function setAutre(string $autre): self
  139.     {
  140.         $this->autre $autre;
  141.         return $this;
  142.     }
  143.     public function isFormationdiplomecertification(): ?bool
  144.     {
  145.         return $this->formationdiplomecertification;
  146.     }
  147.     public function setFormationdiplomecertification(bool $formationdiplomecertification): self
  148.     {
  149.         $this->formationdiplomecertification $formationdiplomecertification;
  150.         return $this;
  151.     }
  152.     public function isObtenudiplomecertification(): ?bool
  153.     {
  154.         return $this->obtenudiplomecertification;
  155.     }
  156.     public function setObtenudiplomecertification(?bool $obtenudiplomecertification): self
  157.     {
  158.         $this->obtenudiplomecertification $obtenudiplomecertification;
  159.         return $this;
  160.     }
  161.     public function getSinonraison(): ?string
  162.     {
  163.         return $this->sinonraison;
  164.     }
  165.     public function setSinonraison(?string $sinonraison): self
  166.     {
  167.         $this->sinonraison $sinonraison;
  168.         return $this;
  169.     }
  170.     public function getFormationattenteinitiale(): ?int
  171.     {
  172.         return $this->formationattenteinitiale;
  173.     }
  174.     public function setFormationattenteinitiale(int $formationattenteinitiale): self
  175.     {
  176.         $this->formationattenteinitiale $formationattenteinitiale;
  177.         return $this;
  178.     }
  179.     public function getAtteintobjectif(): ?int
  180.     {
  181.         return $this->atteintobjectif;
  182.     }
  183.     public function setAtteintobjectif(int $atteintobjectif): self
  184.     {
  185.         $this->atteintobjectif $atteintobjectif;
  186.         return $this;
  187.     }
  188.     public function getFormationadequation(): ?int
  189.     {
  190.         return $this->formationadequation;
  191.     }
  192.     public function setFormationadequation(int $formationadequation): self
  193.     {
  194.         $this->formationadequation $formationadequation;
  195.         return $this;
  196.     }
  197.     public function getRecommandationformation(): ?int
  198.     {
  199.         return $this->recommandationformation;
  200.     }
  201.     public function setRecommandationformation(int $recommandationformation): self
  202.     {
  203.         $this->recommandationformation $recommandationformation;
  204.         return $this;
  205.     }
  206.     public function getElementplusapprecie(): ?string
  207.     {
  208.         return $this->elementplusapprecie;
  209.     }
  210.     public function setElementplusapprecie(?string $elementplusapprecie): self
  211.     {
  212.         $this->elementplusapprecie $elementplusapprecie;
  213.         return $this;
  214.     }
  215.     public function getElementmoinsapprecie(): ?string
  216.     {
  217.         return $this->elementmoinsapprecie;
  218.     }
  219.     public function setElementmoinsapprecie(?string $elementmoinsapprecie): self
  220.     {
  221.         $this->elementmoinsapprecie $elementmoinsapprecie;
  222.         return $this;
  223.     }
  224.     public function getRemarquesuggestion(): ?string
  225.     {
  226.         return $this->remarquesuggestion;
  227.     }
  228.     public function setRemarquesuggestion(?string $remarquesuggestion): self
  229.     {
  230.         $this->remarquesuggestion $remarquesuggestion;
  231.         return $this;
  232.     }
  233.     public function getInscrit(): ?Inscrit
  234.     {
  235.         return $this->inscrit;
  236.     }
  237.     public function setInscrit(?Inscrit $inscrit): self
  238.     {
  239.         $this->inscrit $inscrit;
  240.         return $this;
  241.     }
  242. }