src/Entity/FicheControlePreseriePackaging.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FicheControlePreseriePackagingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFicheControlePreseriePackagingRepository::class)]
  6. class FicheControlePreseriePackaging
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'boolean'nullabletrue)]
  13.     private $adhesive_bool_atelier;
  14.     #[ORM\Column(type'boolean'nullabletrue)]
  15.     private $adhesive_bool_sp;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private $adhesive_commentaire_atelier;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private $adhesive_commentaire_sp;
  20.     #[ORM\Column(type'boolean'nullabletrue)]
  21.     private $macaron_bool_atelier;
  22.     #[ORM\Column(type'boolean'nullabletrue)]
  23.     private $macaron_bool_sp;
  24.     #[ORM\Column(type'string'length255nullabletrue)]
  25.     private $macaron_commentaire_sp;
  26.     #[ORM\Column(type'string'length255nullabletrue)]
  27.     private $macaron_commentaire_atelier;
  28.     #[ORM\Column(type'boolean'nullabletrue)]
  29.     private $vignette_bool_sp;
  30.     #[ORM\Column(type'boolean'nullabletrue)]
  31.     private $vignette_bool_atelier;
  32.     #[ORM\Column(type'string'length255nullabletrue)]
  33.     private $vignette_commentaire_sp;
  34.     #[ORM\Column(type'string'length255nullabletrue)]
  35.     private $vignette_commentaire_atelier;
  36.     #[ORM\Column(type'boolean'nullabletrue)]
  37.     private $swift_bool_sp;
  38.     #[ORM\Column(type'boolean'nullabletrue)]
  39.     private $swift_bool_atelier;
  40.     #[ORM\Column(type'string'length255nullabletrue)]
  41.     private $swift_commentaire_sp;
  42.     #[ORM\Column(type'string'length255nullabletrue)]
  43.     private $swift_commentaire_atelier;
  44.     #[ORM\Column(type'boolean'nullabletrue)]
  45.     private $conditionnement_bool_sp;
  46.     #[ORM\Column(type'boolean'nullabletrue)]
  47.     private $conditionnement_bool_atelier;
  48.     #[ORM\Column(type'string'length255nullabletrue)]
  49.     private $conditionnement_commentaire_sp;
  50.     #[ORM\Column(type'string'length255nullabletrue)]
  51.     private $conditionnement_commentaire_atelier;
  52.     #[ORM\Column(type'boolean'nullabletrue)]
  53.     private $pliage_bool_sp;
  54.     #[ORM\Column(type'boolean'nullabletrue)]
  55.     private $pliage_bool_atelier;
  56.     #[ORM\Column(type'string'length255nullabletrue)]
  57.     private $pliage_commentaire_sp;
  58.     #[ORM\Column(type'string'length255nullabletrue)]
  59.     private $pliage_commentaire_atelier;
  60.     #[ORM\OneToOne(targetEntityFicheControlePreserie::class, mappedBy'packaging'cascade: ['persist''remove'])]
  61.     private $ficheControlePreserie;
  62.     public function getId(): ?int
  63.     {
  64.         return $this->id;
  65.     }
  66.     public function getAdhesiveBoolAtelier(): ?bool
  67.     {
  68.         return $this->adhesive_bool_atelier;
  69.     }
  70.     public function setAdhesiveBoolAtelier(?bool $adhesive_bool_atelier): self
  71.     {
  72.         $this->adhesive_bool_atelier $adhesive_bool_atelier;
  73.         return $this;
  74.     }
  75.     public function getAdhesiveBoolSp(): ?bool
  76.     {
  77.         return $this->adhesive_bool_sp;
  78.     }
  79.     public function setAdhesiveBoolSp(?bool $adhesive_bool_sp): self
  80.     {
  81.         $this->adhesive_bool_sp $adhesive_bool_sp;
  82.         return $this;
  83.     }
  84.     public function getAdhesiveCommentaireAtelier(): ?string
  85.     {
  86.         return $this->adhesive_commentaire_atelier;
  87.     }
  88.     public function setAdhesiveCommentaireAtelier(?string $adhesive_commentaire_atelier): self
  89.     {
  90.         $this->adhesive_commentaire_atelier $adhesive_commentaire_atelier;
  91.         return $this;
  92.     }
  93.     public function getAdhesiveCommentaireSp(): ?string
  94.     {
  95.         return $this->adhesive_commentaire_sp;
  96.     }
  97.     public function setAdhesiveCommentaireSp(?string $adhesive_commentaire_sp): self
  98.     {
  99.         $this->adhesive_commentaire_sp $adhesive_commentaire_sp;
  100.         return $this;
  101.     }
  102.     public function getMacaronBoolAtelier(): ?bool
  103.     {
  104.         return $this->macaron_bool_atelier;
  105.     }
  106.     public function setMacaronBoolAtelier(?bool $macaron_bool_atelier): self
  107.     {
  108.         $this->macaron_bool_atelier $macaron_bool_atelier;
  109.         return $this;
  110.     }
  111.     public function getMacaronBoolSp(): ?bool
  112.     {
  113.         return $this->macaron_bool_sp;
  114.     }
  115.     public function setMacaronBoolSp(?bool $macaron_bool_sp): self
  116.     {
  117.         $this->macaron_bool_sp $macaron_bool_sp;
  118.         return $this;
  119.     }
  120.     public function getMacaronCommentaireSp(): ?string
  121.     {
  122.         return $this->macaron_commentaire_sp;
  123.     }
  124.     public function setMacaronCommentaireSp(?string $macaron_commentaire_sp): self
  125.     {
  126.         $this->macaron_commentaire_sp $macaron_commentaire_sp;
  127.         return $this;
  128.     }
  129.     public function getMacaronCommentaireAtelier(): ?string
  130.     {
  131.         return $this->macaron_commentaire_atelier;
  132.     }
  133.     public function setMacaronCommentaireAtelier(?string $macaron_commentaire_atelier): self
  134.     {
  135.         $this->macaron_commentaire_atelier $macaron_commentaire_atelier;
  136.         return $this;
  137.     }
  138.     public function getVignetteBoolSp(): ?bool
  139.     {
  140.         return $this->vignette_bool_sp;
  141.     }
  142.     public function setVignetteBoolSp(?bool $vignette_bool_sp): self
  143.     {
  144.         $this->vignette_bool_sp $vignette_bool_sp;
  145.         return $this;
  146.     }
  147.     public function getVignetteBoolAtelier(): ?bool
  148.     {
  149.         return $this->vignette_bool_atelier;
  150.     }
  151.     public function setVignetteBoolAtelier(?bool $vignette_bool_atelier): self
  152.     {
  153.         $this->vignette_bool_atelier $vignette_bool_atelier;
  154.         return $this;
  155.     }
  156.     public function getVignetteCommentaireSp(): ?string
  157.     {
  158.         return $this->vignette_commentaire_sp;
  159.     }
  160.     public function setVignetteCommentaireSp(?string $vignette_commentaire_sp): self
  161.     {
  162.         $this->vignette_commentaire_sp $vignette_commentaire_sp;
  163.         return $this;
  164.     }
  165.     public function getVignetteCommentaireAtelier(): ?string
  166.     {
  167.         return $this->vignette_commentaire_atelier;
  168.     }
  169.     public function setVignetteCommentaireAtelier(?string $vignette_commentaire_atelier): self
  170.     {
  171.         $this->vignette_commentaire_atelier $vignette_commentaire_atelier;
  172.         return $this;
  173.     }
  174.     public function getSwiftBoolSp(): ?bool
  175.     {
  176.         return $this->swift_bool_sp;
  177.     }
  178.     public function setSwiftBoolSp(?bool $swift_bool_sp): self
  179.     {
  180.         $this->swift_bool_sp $swift_bool_sp;
  181.         return $this;
  182.     }
  183.     public function getSwiftBoolAtelier(): ?bool
  184.     {
  185.         return $this->swift_bool_atelier;
  186.     }
  187.     public function setSwiftBoolAtelier(?bool $swift_bool_atelier): self
  188.     {
  189.         $this->swift_bool_atelier $swift_bool_atelier;
  190.         return $this;
  191.     }
  192.     public function getSwiftCommentaireSp(): ?string
  193.     {
  194.         return $this->swift_commentaire_sp;
  195.     }
  196.     public function setSwiftCommentaireSp(?string $swift_commentaire_sp): self
  197.     {
  198.         $this->swift_commentaire_sp $swift_commentaire_sp;
  199.         return $this;
  200.     }
  201.     public function getSwiftCommentaireAtelier(): ?string
  202.     {
  203.         return $this->swift_commentaire_atelier;
  204.     }
  205.     public function setSwiftCommentaireAtelier(?string $swift_commentaire_atelier): self
  206.     {
  207.         $this->swift_commentaire_atelier $swift_commentaire_atelier;
  208.         return $this;
  209.     }
  210.     public function getConditionnementBoolSp(): ?bool
  211.     {
  212.         return $this->conditionnement_bool_sp;
  213.     }
  214.     public function setConditionnementBoolSp(?bool $conditionnement_bool_sp): self
  215.     {
  216.         $this->conditionnement_bool_sp $conditionnement_bool_sp;
  217.         return $this;
  218.     }
  219.     public function getConditionnementBoolAtelier(): ?bool
  220.     {
  221.         return $this->conditionnement_bool_atelier;
  222.     }
  223.     public function setConditionnementBoolAtelier(?bool $conditionnement_bool_atelier): self
  224.     {
  225.         $this->conditionnement_bool_atelier $conditionnement_bool_atelier;
  226.         return $this;
  227.     }
  228.     public function getConditionnementCommentaireSp(): ?string
  229.     {
  230.         return $this->conditionnement_commentaire_sp;
  231.     }
  232.     public function setConditionnementCommentaireSp(?string $conditionnement_commentaire_sp): self
  233.     {
  234.         $this->conditionnement_commentaire_sp $conditionnement_commentaire_sp;
  235.         return $this;
  236.     }
  237.     public function getConditionnementCommentaireAtelier(): ?string
  238.     {
  239.         return $this->conditionnement_commentaire_atelier;
  240.     }
  241.     public function setConditionnementCommentaireAtelier(?string $conditionnement_commentaire_atelier): self
  242.     {
  243.         $this->conditionnement_commentaire_atelier $conditionnement_commentaire_atelier;
  244.         return $this;
  245.     }
  246.     public function getPliageBoolSp(): ?bool
  247.     {
  248.         return $this->pliage_bool_sp;
  249.     }
  250.     public function setPliageBoolSp(?bool $pliage_bool_sp): self
  251.     {
  252.         $this->pliage_bool_sp $pliage_bool_sp;
  253.         return $this;
  254.     }
  255.     public function getPliageBoolAtelier(): ?bool
  256.     {
  257.         return $this->pliage_bool_atelier;
  258.     }
  259.     public function setPliageBoolAtelier(?bool $pliage_bool_atelier): self
  260.     {
  261.         $this->pliage_bool_atelier $pliage_bool_atelier;
  262.         return $this;
  263.     }
  264.     public function getPliageCommentaireSp(): ?string
  265.     {
  266.         return $this->pliage_commentaire_sp;
  267.     }
  268.     public function setPliageCommentaireSp(?string $pliage_commentaire_sp): self
  269.     {
  270.         $this->pliage_commentaire_sp $pliage_commentaire_sp;
  271.         return $this;
  272.     }
  273.     public function getPliageCommentaireAtelier(): ?string
  274.     {
  275.         return $this->pliage_commentaire_atelier;
  276.     }
  277.     public function setPliageCommentaireAtelier(?string $pliage_commentaire_atelier): self
  278.     {
  279.         $this->pliage_commentaire_atelier $pliage_commentaire_atelier;
  280.         return $this;
  281.     }
  282.     public function getFicheControlePreserie(): ?FicheControlePreserie
  283.     {
  284.         return $this->ficheControlePreserie;
  285.     }
  286.     public function setFicheControlePreserie(?FicheControlePreserie $ficheControlePreserie): self
  287.     {
  288.         // unset the owning side of the relation if necessary
  289.         if ($ficheControlePreserie === null && $this->ficheControlePreserie !== null) {
  290.             $this->ficheControlePreserie->setPackaging(null);
  291.         }
  292.         // set the owning side of the relation if necessary
  293.         if ($ficheControlePreserie !== null && $ficheControlePreserie->getPackaging() !== $this) {
  294.             $ficheControlePreserie->setPackaging($this);
  295.         }
  296.         $this->ficheControlePreserie $ficheControlePreserie;
  297.         return $this;
  298.     }
  299. }