src/Entity/Inseminateur.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InseminateurRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassInseminateurRepository::class)]
  7. class Inseminateur
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column()]
  12.     private ?int $id null;
  13.     #[ORM\Column(length100nullabletrue)]
  14.     private ?string $codIns null;
  15.     #[ORM\ManyToOne(inversedBy'inseminateurs')]
  16.     private ?User $user null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $nprInsAr null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $nprInsFr null;
  21.     #[ORM\Column(length1nullabletrue)]
  22.     private ?string $typeIns null;
  23.     #[ORM\Column(length100nullabletrue)]
  24.     private ?string $identIns null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $adresse null;
  27.     #[ORM\Column(length30nullabletrue)]
  28.     private ?string $numTel null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?int $numFax null;
  31.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  32.     private ?\DateTimeInterface $createdAt null;
  33.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  34.     private ?\DateTimeInterface $updatedAt null;
  35.     #[ORM\ManyToOne(inversedBy'inseminateurs')]
  36.     private ?DicCircuit $dicCircuit null;
  37.     #[ORM\ManyToOne(inversedBy'inseminateurs')]
  38.     private ?DicGouvernorat $dicGouvernorat null;
  39.     public function getId(): ?int
  40.     {
  41.         return $this->id;
  42.     }
  43.     public function getUser(): ?User
  44.     {
  45.         return $this->user;
  46.     }
  47.     public function setUser(?User $user): self
  48.     {
  49.         $this->user $user;
  50.         return $this;
  51.     }
  52.     public function getNprInsAr(): ?string
  53.     {
  54.         return $this->nprInsAr;
  55.     }
  56.     public function setNprInsAr(?string $nprInsAr): self
  57.     {
  58.         $this->nprInsAr $nprInsAr;
  59.         return $this;
  60.     }
  61.     public function getNprInsFr(): ?string
  62.     {
  63.         return $this->nprInsFr;
  64.     }
  65.     public function setNprInsFr(?string $nprInsFr): self
  66.     {
  67.         $this->nprInsFr $nprInsFr;
  68.         return $this;
  69.     }
  70.     public function getTypeIns(): ?string
  71.     {
  72.         return $this->typeIns;
  73.     }
  74.     public function setTypeIns(?string $typeIns): self
  75.     {
  76.         $this->typeIns $typeIns;
  77.         return $this;
  78.     }
  79.     public function getIdentIns(): ?string
  80.     {
  81.         return $this->identIns;
  82.     }
  83.     public function setIdentIns(?string $identIns): self
  84.     {
  85.         $this->identIns $identIns;
  86.         return $this;
  87.     }
  88.     public function getAdresse(): ?string
  89.     {
  90.         return $this->adresse;
  91.     }
  92.     public function setAdresse(?string $adresse): self
  93.     {
  94.         $this->adresse $adresse;
  95.         return $this;
  96.     }
  97.     public function getNumTel(): ?string
  98.     {
  99.         return $this->numTel;
  100.     }
  101.     public function setNumTel(?string $numTel): self
  102.     {
  103.         $this->numTel $numTel;
  104.         return $this;
  105.     }
  106.     public function getNumFax(): ?int
  107.     {
  108.         return $this->numFax;
  109.     }
  110.     public function setNumFax(?int $numFax): self
  111.     {
  112.         $this->numFax $numFax;
  113.         return $this;
  114.     }
  115.     public function getCreatedAt(): ?\DateTimeInterface
  116.     {
  117.         return $this->createdAt;
  118.     }
  119.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  120.     {
  121.         $this->createdAt $createdAt;
  122.         return $this;
  123.     }
  124.     public function getUpdatedAt(): ?\DateTimeInterface
  125.     {
  126.         return $this->updatedAt;
  127.     }
  128.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  129.     {
  130.         $this->updatedAt $updatedAt;
  131.         return $this;
  132.     }
  133.     public function getDicCircuit(): ?DicCircuit
  134.     {
  135.         return $this->dicCircuit;
  136.     }
  137.     public function setDicCircuit(?DicCircuit $dicCircuit): self
  138.     {
  139.         $this->dicCircuit $dicCircuit;
  140.         return $this;
  141.     }
  142.     public function getDicGouvernorat(): ?DicGouvernorat
  143.     {
  144.         return $this->dicGouvernorat;
  145.     }
  146.     public function setDicGouvernorat(?DicGouvernorat $dicGouvernorat): self
  147.     {
  148.         $this->dicGouvernorat $dicGouvernorat;
  149.         return $this;
  150.     }
  151.     public function getCodIns(): ?string
  152.     {
  153.         return $this->codIns;
  154.     }
  155.     public function setCodIns(?string $codIns): self
  156.     {
  157.         $this->codIns $codIns;
  158.         return $this;
  159.     }
  160.     
  161. }