src/Entity/DemandePlanFormation.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DemandePlanFormationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassDemandePlanFormationRepository::class)]
  6. class DemandePlanFormation
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $instanceRepresentative null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $brancheActivite null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?int $annee null;
  18.     #[ORM\ManyToOne]
  19.     private ?Gouvernorat $gouvernorat null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $populationCible null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?int $ref null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $module null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?int $mode null;
  28.     #[ORM\Column(nullabletrue)]
  29.     private ?int $nbrEntreprise null;
  30.     #[ORM\Column(nullabletrue)]
  31.     private ?int $effectifAformer null;
  32.     #[ORM\Column(nullabletrue)]
  33.     private ?int $duree null;
  34.     #[ORM\Column(nullabletrue)]
  35.     private ?int $nbGroupes null;
  36.     #[ORM\Column(nullabletrue)]
  37.     private ?int $prixUnitaire null;
  38.     #[ORM\Column(nullabletrue)]
  39.     private ?int $cout null;
  40.     #[ORM\Column(length255nullabletrue)]
  41.     private ?string $formateur null;
  42.     #[ORM\Column(length255nullabletrue)]
  43.     private ?string $operateurFormation null;
  44.     #[ORM\OneToOne(cascade: ['persist''remove'])]
  45.     private ?DemandeService $demandeService null;
  46.     public function getId(): ?int
  47.     {
  48.         return $this->id;
  49.     }
  50.     public function getInstanceRepresentative(): ?string
  51.     {
  52.         return $this->instanceRepresentative;
  53.     }
  54.     public function setInstanceRepresentative(?string $instanceRepresentative): self
  55.     {
  56.         $this->instanceRepresentative $instanceRepresentative;
  57.         return $this;
  58.     }
  59.     public function getBrancheActivite(): ?string
  60.     {
  61.         return $this->brancheActivite;
  62.     }
  63.     public function setBrancheActivite(?string $brancheActivite): self
  64.     {
  65.         $this->brancheActivite $brancheActivite;
  66.         return $this;
  67.     }
  68.     public function getAnnee(): ?int
  69.     {
  70.         return $this->annee;
  71.     }
  72.     public function setAnnee(?int $annee): self
  73.     {
  74.         $this->annee $annee;
  75.         return $this;
  76.     }
  77.     public function getGouvernorat(): ?Gouvernorat
  78.     {
  79.         return $this->gouvernorat;
  80.     }
  81.     public function setGouvernorat(?Gouvernorat $gouvernorat): self
  82.     {
  83.         $this->gouvernorat $gouvernorat;
  84.         return $this;
  85.     }
  86.     public function getPopulationCible(): ?string
  87.     {
  88.         return $this->populationCible;
  89.     }
  90.     public function setPopulationCible(?string $populationCible): self
  91.     {
  92.         $this->populationCible $populationCible;
  93.         return $this;
  94.     }
  95.     public function getRef(): ?int
  96.     {
  97.         return $this->ref;
  98.     }
  99.     public function setRef(?int $ref): self
  100.     {
  101.         $this->ref $ref;
  102.         return $this;
  103.     }
  104.     public function getModule(): ?string
  105.     {
  106.         return $this->module;
  107.     }
  108.     public function setModule(?string $module): self
  109.     {
  110.         $this->module $module;
  111.         return $this;
  112.     }
  113.     public function getMode(): ?int
  114.     {
  115.         return $this->mode;
  116.     }
  117.     public function setMode(?int $mode): self
  118.     {
  119.         $this->mode $mode;
  120.         return $this;
  121.     }
  122.     public function getNbrEntreprise(): ?int
  123.     {
  124.         return $this->nbrEntreprise;
  125.     }
  126.     public function setNbrEntreprise(?int $nbrEntreprise): self
  127.     {
  128.         $this->nbrEntreprise $nbrEntreprise;
  129.         return $this;
  130.     }
  131.     public function getEffectifAformer(): ?int
  132.     {
  133.         return $this->effectifAformer;
  134.     }
  135.     public function setEffectifAformer(?int $effectifAformer): self
  136.     {
  137.         $this->effectifAformer $effectifAformer;
  138.         return $this;
  139.     }
  140.     public function getDuree(): ?int
  141.     {
  142.         return $this->duree;
  143.     }
  144.     public function setDuree(?int $duree): self
  145.     {
  146.         $this->duree $duree;
  147.         return $this;
  148.     }
  149.     public function getNbGroupes(): ?int
  150.     {
  151.         return $this->nbGroupes;
  152.     }
  153.     public function setNbGroupes(?int $nbGroupes): self
  154.     {
  155.         $this->nbGroupes $nbGroupes;
  156.         return $this;
  157.     }
  158.     public function getPrixUnitaire(): ?int
  159.     {
  160.         return $this->prixUnitaire;
  161.     }
  162.     public function setPrixUnitaire(?int $prixUnitaire): self
  163.     {
  164.         $this->prixUnitaire $prixUnitaire;
  165.         return $this;
  166.     }
  167.     public function getCout(): ?int
  168.     {
  169.         return $this->cout;
  170.     }
  171.     public function setCout(?int $cout): self
  172.     {
  173.         $this->cout $cout;
  174.         return $this;
  175.     }
  176.     public function getFormateur(): ?string
  177.     {
  178.         return $this->formateur;
  179.     }
  180.     public function setFormateur(string $formateur): self
  181.     {
  182.         $this->formateur $formateur;
  183.         return $this;
  184.     }
  185.     public function getOperateurFormation(): ?string
  186.     {
  187.         return $this->operateurFormation;
  188.     }
  189.     public function setOperateurFormation(?string $operateurFormation): self
  190.     {
  191.         $this->operateurFormation $operateurFormation;
  192.         return $this;
  193.     }
  194.     public function getDemandeService(): ?DemandeService
  195.     {
  196.         return $this->demandeService;
  197.     }
  198.     public function setDemandeService(?DemandeService $demandeService): self
  199.     {
  200.         $this->demandeService $demandeService;
  201.         return $this;
  202.     }
  203. }