src/Entity/FicheControlePreserieOperation.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FicheControlePreserieOperationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFicheControlePreserieOperationRepository::class)]
  6. class FicheControlePreserieOperation
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\ManyToOne(targetEntityOperation::class, inversedBy'ficheControlePreserieOperations')]
  13.     private $operation;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $valeur_couture_demande;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private $valeur_couture_mesure_atelier;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private $valeur_couture_mesure_sp;
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private $nombre_point_demande;
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private $nombre_point_atelier;
  24.     #[ORM\Column(type'string'length255nullabletrue)]
  25.     private $nombre_point_sp;
  26.     #[ORM\Column(type'text'nullabletrue)]
  27.     private $pointcle;
  28.     #[ORM\ManyToOne(targetEntityFicheControlePreserie::class, inversedBy'operations')]
  29.     private $ficheControlePreserie;
  30.     #[ORM\Column(type'text'nullabletrue)]
  31.     private $commentaire_sp;
  32.     #[ORM\Column(type'text'nullabletrue)]
  33.     private $commentaire_atelier;
  34.     #[ORM\Column(type'boolean'nullabletrue)]
  35.     private $respect_consigne_sp;
  36.     #[ORM\Column(type'boolean'nullabletrue)]
  37.     private $respect_consigne_atelier;
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getOperation(): ?Operation
  43.     {
  44.         return $this->operation;
  45.     }
  46.     public function setOperation(?Operation $operation): self
  47.     {
  48.         $this->operation $operation;
  49.         return $this;
  50.     }
  51.     public function getValeurCoutureDemande(): ?string
  52.     {
  53.         return $this->valeur_couture_demande;
  54.     }
  55.     public function setValeurCoutureDemande(?string $valeur_couture_demande): self
  56.     {
  57.         $this->valeur_couture_demande $valeur_couture_demande;
  58.         return $this;
  59.     }
  60.     public function getValeurCoutureMesureAtelier(): ?string
  61.     {
  62.         return $this->valeur_couture_mesure_atelier;
  63.     }
  64.     public function setValeurCoutureMesureAtelier(?string $valeur_couture_mesure_atelier): self
  65.     {
  66.         $this->valeur_couture_mesure_atelier $valeur_couture_mesure_atelier;
  67.         return $this;
  68.     }
  69.     public function getValeurCoutureMesureSp(): ?string
  70.     {
  71.         return $this->valeur_couture_mesure_sp;
  72.     }
  73.     public function setValeurCoutureMesureSp(?string $valeur_couture_mesure_sp): self
  74.     {
  75.         $this->valeur_couture_mesure_sp $valeur_couture_mesure_sp;
  76.         return $this;
  77.     }
  78.     public function getNombrePointDemande(): ?string
  79.     {
  80.         return $this->nombre_point_demande;
  81.     }
  82.     public function setNombrePointDemande(?string $nombre_point_demande): self
  83.     {
  84.         $this->nombre_point_demande $nombre_point_demande;
  85.         return $this;
  86.     }
  87.     public function getNombrePointAtelier(): ?string
  88.     {
  89.         return $this->nombre_point_atelier;
  90.     }
  91.     public function setNombrePointAtelier(?string $nombre_point_atelier): self
  92.     {
  93.         $this->nombre_point_atelier $nombre_point_atelier;
  94.         return $this;
  95.     }
  96.     public function getNombrePointSp(): ?string
  97.     {
  98.         return $this->nombre_point_sp;
  99.     }
  100.     public function setNombrePointSp(?string $nombre_point_sp): self
  101.     {
  102.         $this->nombre_point_sp $nombre_point_sp;
  103.         return $this;
  104.     }
  105.     public function getPointcle(): ?string
  106.     {
  107.         return $this->pointcle;
  108.     }
  109.     public function setPointcle(?string $pointcle): self
  110.     {
  111.         $this->pointcle $pointcle;
  112.         return $this;
  113.     }
  114.     public function getFicheControlePreserie(): ?FicheControlePreserie
  115.     {
  116.         return $this->ficheControlePreserie;
  117.     }
  118.     public function setFicheControlePreserie(?FicheControlePreserie $ficheControlePreserie): self
  119.     {
  120.         $this->ficheControlePreserie $ficheControlePreserie;
  121.         return $this;
  122.     }
  123.     public function getCommentaireSp(): ?string
  124.     {
  125.         return $this->commentaire_sp;
  126.     }
  127.     public function setCommentaireSp(?string $commentaire_sp): self
  128.     {
  129.         $this->commentaire_sp $commentaire_sp;
  130.         return $this;
  131.     }
  132.     public function getCommentaireAtelier(): ?string
  133.     {
  134.         return $this->commentaire_atelier;
  135.     }
  136.     public function setCommentaireAtelier(?string $commentaire_atelier): self
  137.     {
  138.         $this->commentaire_atelier $commentaire_atelier;
  139.         return $this;
  140.     }
  141.     public function getRespectConsigneSp(): ?bool
  142.     {
  143.         return $this->respect_consigne_sp;
  144.     }
  145.     public function setRespectConsigneSp(?bool $respect_consigne_sp): self
  146.     {
  147.         $this->respect_consigne_sp $respect_consigne_sp;
  148.         return $this;
  149.     }
  150.     public function getRespectConsigneAtelier(): ?bool
  151.     {
  152.         return $this->respect_consigne_atelier;
  153.     }
  154.     public function setRespectConsigneAtelier(?bool $respect_consigne_atelier): self
  155.     {
  156.         $this->respect_consigne_atelier $respect_consigne_atelier;
  157.         return $this;
  158.     }
  159. }