src/Entity/FicheQualiteSynthese.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FicheQualiteSyntheseRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFicheQualiteSyntheseRepository::class)]
  6. class FicheQualiteSynthese
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private $reference;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $coloris;
  16.     #[ORM\ManyToOne(targetEntityAtelier::class, inversedBy'ficheQualiteSyntheses')]
  17.     private $atelier;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private $quantite;
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private $numero_lancement;
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private $name;
  24.     #[ORM\Column(type'datetime'nullabletrue)]
  25.     private $date_reception;
  26.     #[ORM\Column(type'float'nullabletrue)]
  27.     private $quantite_controle;
  28.     #[ORM\Column(type'integer'nullabletrue)]
  29.     private ?int $total_solde 0;
  30.     #[ORM\Column(type'integer'nullabletrue)]
  31.     private ?int $total_reparation 0;
  32.     #[ORM\Column(type'boolean'nullabletrue)]
  33.     private $ferme;
  34.     #[ORM\Column(type'datetime'nullabletrue)]
  35.     private $date_fermeture;
  36.     #[ORM\ManyToOne(targetEntityParametrageEchantillon::class, inversedBy'ficheQualiteSyntheses')]
  37.     private $parametrage_echantillon;
  38.     #[ORM\Column(type'integer'nullabletrue)]
  39.     private ?int $total_defaut_mineur 0;
  40.     #[ORM\Column(type'integer'nullabletrue)]
  41.     private ?int $total_defaut_majeur 0;
  42.     #[ORM\Column(type'integer'nullabletrue)]
  43.     private ?int $total_defaut_critique 0;
  44.     #[ORM\ManyToOne(targetEntityFichePreserie::class, inversedBy'ficheQualiteSyntheses')]
  45.     private $fiche_preserie;
  46.     #[ORM\ManyToOne(targetEntityStatutQualiteSynthese::class, inversedBy'ficheQualiteSyntheses')]
  47.     private $statut;
  48.     #[ORM\Column(type'string'length255nullabletrue)]
  49.     private $quantite_lancement;
  50.     #[ORM\Column(type'datetime'nullabletrue)]
  51.     private $date_creation;
  52.     #[ORM\Column(type'datetime'nullabletrue)]
  53.     private $date_update;
  54.     #[ORM\ManyToOne(targetEntityStatutQualiteAtelier::class, inversedBy'ficheQualiteSyntheses')]
  55.     private $statut_atelier;
  56.     #[ORM\Column(type'boolean'nullabletrue)]
  57.     private int $ferme_atelier 0;
  58.     #[ORM\Column(type'integer'nullabletrue)]
  59.     private $total_reparation_cent;
  60.     #[ORM\Column(type'integer'nullabletrue)]
  61.     private $total_solde_cent;
  62.     #[ORM\Column(type'integer'nullabletrue)]
  63.     private $total_defaut_mineur_cent;
  64.     #[ORM\Column(type'integer'nullabletrue)]
  65.     private $total_defaut_majeur_cent;
  66.     #[ORM\Column(type'integer'nullabletrue)]
  67.     private $total_defaut_critique_cent;
  68.     #[ORM\Column(type'integer'nullabletrue)]
  69.     private ?int $nombre_piece_nc 0;
  70.     #[ORM\Column(type'float'nullabletrue)]
  71.     private int $temps_passe 0;
  72.     #[ORM\Column(type'integer'nullabletrue)]
  73.     private ?int $total_reparation_interne 0;
  74.     #[ORM\Column(type'float'nullabletrue)]
  75.     private int $total_temps_reparation_interne 0;
  76.     #[ORM\Column(type'float'nullabletrue)]
  77.     private int $total_temps_controle 0;
  78.     #[ORM\Column(type'float'nullabletrue)]
  79.     private int $temps_passe100 0;
  80.     #[ORM\Column(type'string'length255nullabletrue)]
  81.     private $numero_adr;
  82.     #[ORM\Column(type'float'nullabletrue)]
  83.     private $quantite_derogation;
  84.     #[ORM\Column(type'boolean'nullabletrue)]
  85.     private int $cotraitance 0;
  86.     public function getId(): ?int
  87.     {
  88.         return $this->id;
  89.     }
  90.     public function getFichePreserie(): ?FichePreserie
  91.     {
  92.         return $this->fiche_preserie;
  93.     }
  94.     public function setFichePreserie(?FichePreserie $fiche_preserie): self
  95.     {
  96.         $this->fiche_preserie $fiche_preserie;
  97.         return $this;
  98.     }
  99.     public function getReference(): ?string
  100.     {
  101.         return $this->reference;
  102.     }
  103.     public function setReference(?string $reference): self
  104.     {
  105.         $this->reference $reference;
  106.         return $this;
  107.     }
  108.     public function getColoris(): ?string
  109.     {
  110.         return $this->coloris;
  111.     }
  112.     public function setColoris(?string $coloris): self
  113.     {
  114.         $this->coloris $coloris;
  115.         return $this;
  116.     }
  117.     public function getAtelier(): ?Atelier
  118.     {
  119.         return $this->atelier;
  120.     }
  121.     public function setAtelier(?Atelier $atelier): self
  122.     {
  123.         $this->atelier $atelier;
  124.         return $this;
  125.     }
  126.     public function getQuantite(): ?string
  127.     {
  128.         return $this->quantite;
  129.     }
  130.     public function setQuantite(?string $quantite): self
  131.     {
  132.         $this->quantite $quantite;
  133.         return $this;
  134.     }
  135.     public function getNumeroLancement(): ?string
  136.     {
  137.         return $this->numero_lancement;
  138.     }
  139.     public function setNumeroLancement(?string $numero_lancement): self
  140.     {
  141.         $this->numero_lancement $numero_lancement;
  142.         return $this;
  143.     }
  144.     public function getName(): ?string
  145.     {
  146.         return $this->name;
  147.     }
  148.     public function setName(?string $name): self
  149.     {
  150.         $this->name $name;
  151.         return $this;
  152.     }
  153.     public function getDateReception(): ?\DateTimeInterface
  154.     {
  155.         return $this->date_reception;
  156.     }
  157.     public function setDateReception(?\DateTimeInterface $date_reception): self
  158.     {
  159.         $this->date_reception $date_reception;
  160.         return $this;
  161.     }
  162.     public function getQuantiteControle(): ?float
  163.     {
  164.         return $this->quantite_controle;
  165.     }
  166.     public function setQuantiteControle(?float $quantite_controle): self
  167.     {
  168.         $this->quantite_controle $quantite_controle;
  169.         return $this;
  170.     }
  171.     public function getTotalSolde(): ?int
  172.     {
  173.         return $this->total_solde;
  174.     }
  175.     public function setTotalSolde(?int $total_solde): self
  176.     {
  177.         $this->total_solde $total_solde;
  178.         return $this;
  179.     }
  180.     public function getTotalReparation(): ?int
  181.     {
  182.         return $this->total_reparation;
  183.     }
  184.     public function setTotalReparation(?int $total_reparation): self
  185.     {
  186.         $this->total_reparation $total_reparation;
  187.         return $this;
  188.     }
  189.     public function getFerme(): ?bool
  190.     {
  191.         return $this->ferme;
  192.     }
  193.     public function setFerme(?bool $ferme): self
  194.     {
  195.         $this->ferme $ferme;
  196.         return $this;
  197.     }
  198.     public function getDateFermeture(): ?\DateTimeInterface
  199.     {
  200.         return $this->date_fermeture;
  201.     }
  202.     public function setDateFermeture(?\DateTimeInterface $date_fermeture): self
  203.     {
  204.         $this->date_fermeture $date_fermeture;
  205.         return $this;
  206.     }
  207.     public function getParametrageEchantillon(): ?ParametrageEchantillon
  208.     {
  209.         return $this->parametrage_echantillon;
  210.     }
  211.     public function setParametrageEchantillon(?ParametrageEchantillon $parametrage_echantillon): self
  212.     {
  213.         $this->parametrage_echantillon $parametrage_echantillon;
  214.         return $this;
  215.     }
  216.     public function getTotalDefautMineur(): ?int
  217.     {
  218.         return $this->total_defaut_mineur;
  219.     }
  220.     public function setTotalDefautMineur(?int $total_defaut_mineur): self
  221.     {
  222.         $this->total_defaut_mineur $total_defaut_mineur;
  223.         return $this;
  224.     }
  225.     public function getTotalDefautMajeur(): ?int
  226.     {
  227.         return $this->total_defaut_majeur;
  228.     }
  229.     public function setTotalDefautMajeur(?int $total_defaut_majeur): self
  230.     {
  231.         $this->total_defaut_majeur $total_defaut_majeur;
  232.         return $this;
  233.     }
  234.     public function getTotalDefautCritique(): ?int
  235.     {
  236.         return $this->total_defaut_critique;
  237.     }
  238.     public function setTotalDefautCritique(?int $total_defaut_critique): self
  239.     {
  240.         $this->total_defaut_critique $total_defaut_critique;
  241.         return $this;
  242.     }
  243.     public function getStatut(): ?StatutQualiteSynthese
  244.     {
  245.         return $this->statut;
  246.     }
  247.     public function setStatut(?StatutQualiteSynthese $statut): self
  248.     {
  249.         $this->statut $statut;
  250.         return $this;
  251.     }
  252.     public function getQuantiteLancement(): ?string
  253.     {
  254.         return $this->quantite_lancement;
  255.     }
  256.     public function setQuantiteLancement(?string $quantite_lancement): self
  257.     {
  258.         $this->quantite_lancement $quantite_lancement;
  259.         return $this;
  260.     }
  261.     public function getDateCreation(): ?\DateTimeInterface
  262.     {
  263.         return $this->date_creation;
  264.     }
  265.     public function setDateCreation(?\DateTimeInterface $date_creation): self
  266.     {
  267.         $this->date_creation $date_creation;
  268.         return $this;
  269.     }
  270.     public function getDateUpdate(): ?\DateTimeInterface
  271.     {
  272.         return $this->date_update;
  273.     }
  274.     public function setDateUpdate(?\DateTimeInterface $date_update): self
  275.     {
  276.         $this->date_update $date_update;
  277.         return $this;
  278.     }
  279.     public function getStatutAtelier(): ?StatutQualiteAtelier
  280.     {
  281.         return $this->statut_atelier;
  282.     }
  283.     public function setStatutAtelier(?StatutQualiteAtelier $statut_atelier): self
  284.     {
  285.         $this->statut_atelier $statut_atelier;
  286.         return $this;
  287.     }
  288.     public function getFermeAtelier(): ?bool
  289.     {
  290.         return $this->ferme_atelier;
  291.     }
  292.     public function setFermeAtelier(?bool $ferme_atelier): self
  293.     {
  294.         $this->ferme_atelier $ferme_atelier;
  295.         return $this;
  296.     }
  297.     public function getTotalReparationCent(): ?int
  298.     {
  299.         return $this->total_reparation_cent;
  300.     }
  301.     public function setTotalReparationCent(?int $total_reparation_cent): self
  302.     {
  303.         $this->total_reparation_cent $total_reparation_cent;
  304.         return $this;
  305.     }
  306.     public function getTotalSoldeCent(): ?int
  307.     {
  308.         return $this->total_solde_cent;
  309.     }
  310.     public function setTotalSoldeCent(?int $total_solde_cent): self
  311.     {
  312.         $this->total_solde_cent $total_solde_cent;
  313.         return $this;
  314.     }
  315.     public function getTotalDefautMineurCent(): ?int
  316.     {
  317.         return $this->total_defaut_mineur_cent;
  318.     }
  319.     public function setTotalDefautMineurCent(?int $total_defaut_mineur_cent): self
  320.     {
  321.         $this->total_defaut_mineur_cent $total_defaut_mineur_cent;
  322.         return $this;
  323.     }
  324.     public function getTotalDefautMajeurCent(): ?int
  325.     {
  326.         return $this->total_defaut_majeur_cent;
  327.     }
  328.     public function setTotalDefautMajeurCent(?int $total_defaut_majeur_cent): self
  329.     {
  330.         $this->total_defaut_majeur_cent $total_defaut_majeur_cent;
  331.         return $this;
  332.     }
  333.     public function getTotalDefautCritiqueCent(): ?int
  334.     {
  335.         return $this->total_defaut_critique_cent;
  336.     }
  337.     public function setTotalDefautCritiqueCent(?int $total_defaut_critique_cent): self
  338.     {
  339.         $this->total_defaut_critique_cent $total_defaut_critique_cent;
  340.         return $this;
  341.     }
  342.     public function getNombrePieceNc(): ?int
  343.     {
  344.         return $this->nombre_piece_nc;
  345.     }
  346.     public function setNombrePieceNc(?int $nombre_piece_nc): self
  347.     {
  348.         $this->nombre_piece_nc $nombre_piece_nc;
  349.         return $this;
  350.     }
  351.     public function getTempsPasse(): ?float
  352.     {
  353.         return $this->temps_passe;
  354.     }
  355.     public function setTempsPasse(?float $temps_passe): self
  356.     {
  357.         $this->temps_passe $temps_passe;
  358.         return $this;
  359.     }
  360.     public function getTotalReparationInterne(): ?int
  361.     {
  362.         return $this->total_reparation_interne;
  363.     }
  364.     public function setTotalReparationInterne(?int $total_reparation_interne): self
  365.     {
  366.         $this->total_reparation_interne $total_reparation_interne;
  367.         return $this;
  368.     }
  369.     public function getTotalTempsReparationInterne(): ?float
  370.     {
  371.         return $this->total_temps_reparation_interne;
  372.     }
  373.     public function setTotalTempsReparationInterne(?float $total_temps_reparation_interne): self
  374.     {
  375.         $this->total_temps_reparation_interne $total_temps_reparation_interne;
  376.         return $this;
  377.     }
  378.     public function getTotalTempsControle(): ?float
  379.     {
  380.         return $this->total_temps_controle;
  381.     }
  382.     public function setTotalTempsControle(?float $total_temps_controle): self
  383.     {
  384.         $this->total_temps_controle $total_temps_controle;
  385.         return $this;
  386.     }
  387.     public function getTempsPasse100(): ?float
  388.     {
  389.         return $this->temps_passe100;
  390.     }
  391.     public function setTempsPasse100(?float $temps_passe_100): self
  392.     {
  393.         $this->temps_passe100 $temps_passe_100;
  394.         return $this;
  395.     }
  396.     public function getNumeroAdr(): ?string
  397.     {
  398.         return $this->numero_adr;
  399.     }
  400.     public function setNumeroAdr(?string $numero_adr): self
  401.     {
  402.         $this->numero_adr $numero_adr;
  403.         return $this;
  404.     }
  405.     public function getQuantiteDerogation(): ?float
  406.     {
  407.         return $this->quantite_derogation;
  408.     }
  409.     public function setQuantiteDerogation(?float $quantite_derogation): self
  410.     {
  411.         $this->quantite_derogation $quantite_derogation;
  412.         return $this;
  413.     }
  414.     public function getCotraitance(): ?bool
  415.     {
  416.         return $this->cotraitance;
  417.     }
  418.     public function setCotraitance(?bool $cotraitance): self
  419.     {
  420.         $this->cotraitance $cotraitance;
  421.         return $this;
  422.     }
  423. }