src/Entity/EntretientMacsst.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EntretientMacsstRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EntretientMacsstRepository::class)
  7.  */
  8. class EntretientMacsst
  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 $respiratoiren;
  20.     /**
  21.      * @ORM\Column(type="boolean")
  22.      */
  23.     private $respiratoiree;
  24.     /**
  25.      * @ORM\Column(type="boolean")
  26.      */
  27.     private $respiratoirea;
  28.     /**
  29.      * @ORM\Column(type="boolean")
  30.      */
  31.     private $mannequinn;
  32.     /**
  33.      * @ORM\Column(type="boolean")
  34.      */
  35.     private $mannequine;
  36.     /**
  37.      * @ORM\Column(type="boolean")
  38.      */
  39.     private $mannequia;
  40.     /**
  41.      * @ORM\Column(type="boolean")
  42.      */
  43.     private $vetementn;
  44.     /**
  45.      * @ORM\Column(type="boolean")
  46.      */
  47.     private $vetemente;
  48.     /**
  49.      * @ORM\Column(type="boolean")
  50.      */
  51.     private $vetementa;
  52.     /**
  53.      * @ORM\Column(type="text", nullable=true)
  54.      */
  55.     private $observation;
  56.     /**
  57.      * @ORM\Column(type="text", nullable=true)
  58.      */
  59.     private $signature;
  60.     /**
  61.      * @ORM\OneToOne(targetEntity=Session::class, inversedBy="entretientMacsst", cascade={"persist"})
  62.      * @ORM\JoinColumn(nullable=false)
  63.      */
  64.     private $session;
  65.     public function getId(): ?int
  66.     {
  67.         return $this->id;
  68.     }
  69.     public function isRespiratoiren(): ?bool
  70.     {
  71.         return $this->respiratoiren;
  72.     }
  73.     public function setRespiratoiren(bool $respiratoiren): self
  74.     {
  75.         $this->respiratoiren $respiratoiren;
  76.         return $this;
  77.     }
  78.     public function isRespiratoiree(): ?bool
  79.     {
  80.         return $this->respiratoiree;
  81.     }
  82.     public function setRespiratoiree(bool $respiratoiree): self
  83.     {
  84.         $this->respiratoiree $respiratoiree;
  85.         return $this;
  86.     }
  87.     public function isRespiratoirea(): ?bool
  88.     {
  89.         return $this->respiratoirea;
  90.     }
  91.     public function setRespiratoirea(bool $respiratoirea): self
  92.     {
  93.         $this->respiratoirea $respiratoirea;
  94.         return $this;
  95.     }
  96.     public function isMannequinn(): ?bool
  97.     {
  98.         return $this->mannequinn;
  99.     }
  100.     public function setMannequinn(bool $mannequinn): self
  101.     {
  102.         $this->mannequinn $mannequinn;
  103.         return $this;
  104.     }
  105.     public function isMannequine(): ?bool
  106.     {
  107.         return $this->mannequine;
  108.     }
  109.     public function setMannequine(bool $mannequine): self
  110.     {
  111.         $this->mannequine $mannequine;
  112.         return $this;
  113.     }
  114.     public function isMannequia(): ?bool
  115.     {
  116.         return $this->mannequia;
  117.     }
  118.     public function setMannequia(bool $mannequia): self
  119.     {
  120.         $this->mannequia $mannequia;
  121.         return $this;
  122.     }
  123.     public function isVetementn(): ?bool
  124.     {
  125.         return $this->vetementn;
  126.     }
  127.     public function setVetementn(bool $vetementn): self
  128.     {
  129.         $this->vetementn $vetementn;
  130.         return $this;
  131.     }
  132.     public function isVetemente(): ?bool
  133.     {
  134.         return $this->vetemente;
  135.     }
  136.     public function setVetemente(bool $vetemente): self
  137.     {
  138.         $this->vetemente $vetemente;
  139.         return $this;
  140.     }
  141.     public function isVetementa(): ?bool
  142.     {
  143.         return $this->vetementa;
  144.     }
  145.     public function setVetementa(bool $vetementa): self
  146.     {
  147.         $this->vetementa $vetementa;
  148.         return $this;
  149.     }
  150.     public function getObservation(): ?string
  151.     {
  152.         return $this->observation;
  153.     }
  154.     public function setObservation(?string $observation): self
  155.     {
  156.         $this->observation $observation;
  157.         return $this;
  158.     }
  159.     public function getSignature(): ?string
  160.     {
  161.         return $this->signature;
  162.     }
  163.     public function setSignature(?string $signature): self
  164.     {
  165.         $this->signature $signature;
  166.         return $this;
  167.     }
  168.     public function getSession(): ?Session
  169.     {
  170.         return $this->session;
  171.     }
  172.     public function setSession(Session $session): self
  173.     {
  174.         $this->session $session;
  175.         return $this;
  176.     }
  177. }