src/Entity/FicheControlePreserieCoupeDentelle.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FicheControlePreserieCoupeDentelleRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFicheControlePreserieCoupeDentelleRepository::class)]
  6. class FicheControlePreserieCoupeDentelle
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'boolean'nullabletrue)]
  13.     private $utilisation_creux_respecte_bool_sp;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $utilisation_creux_respecte_commentaire_sp;
  16.     #[ORM\Column(type'boolean'nullabletrue)]
  17.     private $utilisation_creux_respecte_bool_atelier;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private $utilisation_creux_respecte_commentaire_atelier;
  20.     #[ORM\Column(type'boolean'nullabletrue)]
  21.     private $appairer_couleur_bool_sp;
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private $appairer_couleur_commentaire_sp;
  24.     #[ORM\Column(type'boolean'nullabletrue)]
  25.     private $appairer_couleur_bool_atelier;
  26.     #[ORM\Column(type'string'length255nullabletrue)]
  27.     private $appairer_couleur_commentaire_atelier;
  28.     #[ORM\Column(type'boolean'nullabletrue)]
  29.     private $orientation_dessin_bool_sp;
  30.     #[ORM\Column(type'string'length255nullabletrue)]
  31.     private $orientation_dessin_commentaire_sp;
  32.     #[ORM\Column(type'boolean'nullabletrue)]
  33.     private $orientation_dessin_bool_atelier;
  34.     #[ORM\Column(type'string'length255nullabletrue)]
  35.     private $orientation_dessin_commentaire_atelier;
  36.     #[ORM\Column(type'boolean'nullabletrue)]
  37.     private $appairer_motif_bool_sp;
  38.     #[ORM\Column(type'string'length255nullabletrue)]
  39.     private $appairer_motif_commentaire_sp;
  40.     #[ORM\Column(type'boolean'nullabletrue)]
  41.     private $appairer_motif_bool_atelier;
  42.     #[ORM\Column(type'string'length255nullabletrue)]
  43.     private $appairer_motif_commentaire_atelier;
  44.     #[ORM\Column(type'boolean'nullabletrue)]
  45.     private $couper_paire_bool_sp;
  46.     #[ORM\Column(type'string'length255nullabletrue)]
  47.     private $couper_paire_commentaire_sp;
  48.     #[ORM\Column(type'boolean'nullabletrue)]
  49.     private $couper_paire_bool_atelier;
  50.     #[ORM\Column(type'string'length255nullabletrue)]
  51.     private $couper_paire_commentaire_atelier;
  52.     #[ORM\OneToOne(targetEntityFicheControlePreserie::class, mappedBy'coupe_dentelle'cascade: ['persist''remove'])]
  53.     private $ficheControlePreserie;
  54.     public function getId(): ?int
  55.     {
  56.         return $this->id;
  57.     }
  58.     public function getUtilisationCreuxRespecteBoolSp(): ?bool
  59.     {
  60.         return $this->utilisation_creux_respecte_bool_sp;
  61.     }
  62.     public function setUtilisationCreuxRespecteBoolSp(?bool $utilisation_creux_respecte_bool_sp): self
  63.     {
  64.         $this->utilisation_creux_respecte_bool_sp $utilisation_creux_respecte_bool_sp;
  65.         return $this;
  66.     }
  67.     public function getUtilisationCreuxRespecteCommentaireSp(): ?string
  68.     {
  69.         return $this->utilisation_creux_respecte_commentaire_sp;
  70.     }
  71.     public function setUtilisationCreuxRespecteCommentaireSp(?string $utilisation_creux_respecte_commentaire_sp): self
  72.     {
  73.         $this->utilisation_creux_respecte_commentaire_sp $utilisation_creux_respecte_commentaire_sp;
  74.         return $this;
  75.     }
  76.     public function getUtilisationCreuxRespecteBoolAtelier(): ?bool
  77.     {
  78.         return $this->utilisation_creux_respecte_bool_atelier;
  79.     }
  80.     public function setUtilisationCreuxRespecteBoolAtelier(?bool $utilisation_creux_respecte_bool_atelier): self
  81.     {
  82.         $this->utilisation_creux_respecte_bool_atelier $utilisation_creux_respecte_bool_atelier;
  83.         return $this;
  84.     }
  85.     public function getUtilisationCreuxRespecteCommentaireAtelier(): ?string
  86.     {
  87.         return $this->utilisation_creux_respecte_commentaire_atelier;
  88.     }
  89.     public function setUtilisationCreuxRespecteCommentaireAtelier(?string $utilisation_creux_respecte_commentaire_atelier): self
  90.     {
  91.         $this->utilisation_creux_respecte_commentaire_atelier $utilisation_creux_respecte_commentaire_atelier;
  92.         return $this;
  93.     }
  94.     public function getAppairerCouleurBoolSp(): ?bool
  95.     {
  96.         return $this->appairer_couleur_bool_sp;
  97.     }
  98.     public function setAppairerCouleurBoolSp(?bool $appairer_couleur_bool_sp): self
  99.     {
  100.         $this->appairer_couleur_bool_sp $appairer_couleur_bool_sp;
  101.         return $this;
  102.     }
  103.     public function getAppairerCouleurCommentaireSp(): ?string
  104.     {
  105.         return $this->appairer_couleur_commentaire_sp;
  106.     }
  107.     public function setAppairerCouleurCommentaireSp(?string $appairer_couleur_commentaire_sp): self
  108.     {
  109.         $this->appairer_couleur_commentaire_sp $appairer_couleur_commentaire_sp;
  110.         return $this;
  111.     }
  112.     public function getAppairerCouleurBoolAtelier(): ?bool
  113.     {
  114.         return $this->appairer_couleur_bool_atelier;
  115.     }
  116.     public function setAppairerCouleurBoolAtelier(?bool $appairer_couleur_bool_atelier): self
  117.     {
  118.         $this->appairer_couleur_bool_atelier $appairer_couleur_bool_atelier;
  119.         return $this;
  120.     }
  121.     public function getAppairerCouleurCommentaireAtelier(): ?string
  122.     {
  123.         return $this->appairer_couleur_commentaire_atelier;
  124.     }
  125.     public function setAppairerCouleurCommentaireAtelier(?string $appairer_couleur_commentaire_atelier): self
  126.     {
  127.         $this->appairer_couleur_commentaire_atelier $appairer_couleur_commentaire_atelier;
  128.         return $this;
  129.     }
  130.     public function getOrientationDessinBoolSp(): ?bool
  131.     {
  132.         return $this->orientation_dessin_bool_sp;
  133.     }
  134.     public function setOrientationDessinBoolSp(?bool $orientation_dessin_bool_sp): self
  135.     {
  136.         $this->orientation_dessin_bool_sp $orientation_dessin_bool_sp;
  137.         return $this;
  138.     }
  139.     public function getOrientationDessinCommentaireSp(): ?string
  140.     {
  141.         return $this->orientation_dessin_commentaire_sp;
  142.     }
  143.     public function setOrientationDessinCommentaireSp(?string $orientation_dessin_commentaire_sp): self
  144.     {
  145.         $this->orientation_dessin_commentaire_sp $orientation_dessin_commentaire_sp;
  146.         return $this;
  147.     }
  148.     public function getOrientationDessinBoolAtelier(): ?bool
  149.     {
  150.         return $this->orientation_dessin_bool_atelier;
  151.     }
  152.     public function setOrientationDessinBoolAtelier(?bool $orientation_dessin_bool_atelier): self
  153.     {
  154.         $this->orientation_dessin_bool_atelier $orientation_dessin_bool_atelier;
  155.         return $this;
  156.     }
  157.     public function getOrientationDessinCommentaireAtelier(): ?string
  158.     {
  159.         return $this->orientation_dessin_commentaire_atelier;
  160.     }
  161.     public function setOrientationDessinCommentaireAtelier(?string $orientation_dessin_commentaire_atelier): self
  162.     {
  163.         $this->orientation_dessin_commentaire_atelier $orientation_dessin_commentaire_atelier;
  164.         return $this;
  165.     }
  166.     public function getAppairerMotifBoolSp(): ?bool
  167.     {
  168.         return $this->appairer_motif_bool_sp;
  169.     }
  170.     public function setAppairerMotifBoolSp(?bool $appairer_motif_bool_sp): self
  171.     {
  172.         $this->appairer_motif_bool_sp $appairer_motif_bool_sp;
  173.         return $this;
  174.     }
  175.     public function getAppairerMotifCommentaireSp(): ?string
  176.     {
  177.         return $this->appairer_motif_commentaire_sp;
  178.     }
  179.     public function setAppairerMotifCommentaireSp(?string $appairer_motif_commentaire_sp): self
  180.     {
  181.         $this->appairer_motif_commentaire_sp $appairer_motif_commentaire_sp;
  182.         return $this;
  183.     }
  184.     public function getAppairerMotifBoolAtelier(): ?bool
  185.     {
  186.         return $this->appairer_motif_bool_atelier;
  187.     }
  188.     public function setAppairerMotifBoolAtelier(?bool $appairer_motif_bool_atelier): self
  189.     {
  190.         $this->appairer_motif_bool_atelier $appairer_motif_bool_atelier;
  191.         return $this;
  192.     }
  193.     public function getAppairerMotifCommentaireAtelier(): ?string
  194.     {
  195.         return $this->appairer_motif_commentaire_atelier;
  196.     }
  197.     public function setAppairerMotifCommentaireAtelier(?string $appairer_motif_commentaire_atelier): self
  198.     {
  199.         $this->appairer_motif_commentaire_atelier $appairer_motif_commentaire_atelier;
  200.         return $this;
  201.     }
  202.     public function getCouperPaireBoolSp(): ?bool
  203.     {
  204.         return $this->couper_paire_bool_sp;
  205.     }
  206.     public function setCouperPaireBoolSp(?bool $couper_paire_bool_sp): self
  207.     {
  208.         $this->couper_paire_bool_sp $couper_paire_bool_sp;
  209.         return $this;
  210.     }
  211.     public function getCouperPaireCommentaireSp(): ?string
  212.     {
  213.         return $this->couper_paire_commentaire_sp;
  214.     }
  215.     public function setCouperPaireCommentaireSp(?string $couper_paire_commentaire_sp): self
  216.     {
  217.         $this->couper_paire_commentaire_sp $couper_paire_commentaire_sp;
  218.         return $this;
  219.     }
  220.     public function getCouperPaireBoolAtelier(): ?bool
  221.     {
  222.         return $this->couper_paire_bool_atelier;
  223.     }
  224.     public function setCouperPaireBoolAtelier(?bool $couper_paire_bool_atelier): self
  225.     {
  226.         $this->couper_paire_bool_atelier $couper_paire_bool_atelier;
  227.         return $this;
  228.     }
  229.     public function getCouperPaireCommentaireAtelier(): ?string
  230.     {
  231.         return $this->couper_paire_commentaire_atelier;
  232.     }
  233.     public function setCouperPaireCommentaireAtelier(?string $couper_paire_commentaire_atelier): self
  234.     {
  235.         $this->couper_paire_commentaire_atelier $couper_paire_commentaire_atelier;
  236.         return $this;
  237.     }
  238.     public function getFicheControlePreserie(): ?FicheControlePreserie
  239.     {
  240.         return $this->ficheControlePreserie;
  241.     }
  242.     public function setFicheControlePreserie(?FicheControlePreserie $ficheControlePreserie): self
  243.     {
  244.         // unset the owning side of the relation if necessary
  245.         if ($ficheControlePreserie === null && $this->ficheControlePreserie !== null) {
  246.             $this->ficheControlePreserie->setCoupeDentelle(null);
  247.         }
  248.         // set the owning side of the relation if necessary
  249.         if ($ficheControlePreserie !== null && $ficheControlePreserie->getCoupeDentelle() !== $this) {
  250.             $ficheControlePreserie->setCoupeDentelle($this);
  251.         }
  252.         $this->ficheControlePreserie $ficheControlePreserie;
  253.         return $this;
  254.     }
  255. }