src/Entity/TCnssA00.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TCnssA00Repository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassTCnssA00Repository::class)]
  9. class TCnssA00
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length3nullabletrue)]
  16.     private ?string $typeEnreg null;
  17.     #[ORM\Column(length14nullabletrue)]
  18.     private ?string $IdentiTransfert null;
  19.     #[ORM\Column(length2nullabletrue)]
  20.     private ?string $cat null;
  21.     #[ORM\Column(length241nullabletrue)]
  22.     private ?string $filler null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?int $periode null;
  25.     #[ORM\OneToMany(mappedBy'cnssa00'targetEntityTCnssA01::class)]
  26.     private Collection $tCnssA01s;
  27.     #[ORM\OneToMany(mappedBy'cnssa00'targetEntityTCnssA02::class)]
  28.     private Collection $tCnssA02s;
  29.     #[ORM\OneToMany(mappedBy'cnssa00'targetEntityTCnssA03::class)]
  30.     private Collection $tCnssA03s;
  31.     #[ORM\Column(nullabletrue)]
  32.     private ?bool $active true;
  33.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  34.     private ?\DateTimeInterface $created null;
  35.     #[ORM\ManyToOne(inversedBy'tCnssA00s')]
  36.     private ?Users $userCreated null;
  37.     public function __construct()
  38.     {
  39.         $this->tCnssA01s = new ArrayCollection();
  40.         $this->tCnssA02s = new ArrayCollection();
  41.         $this->tCnssA03s = new ArrayCollection();
  42.     }
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getTypeEnreg(): ?string
  48.     {
  49.         return $this->typeEnreg;
  50.     }
  51.     public function setTypeEnreg(?string $typeEnreg): static
  52.     {
  53.         $this->typeEnreg $typeEnreg;
  54.         return $this;
  55.     }
  56.     public function getIdentiTransfert(): ?string
  57.     {
  58.         return $this->IdentiTransfert;
  59.     }
  60.     public function setIdentiTransfert(?string $IdentiTransfert): static
  61.     {
  62.         $this->IdentiTransfert $IdentiTransfert;
  63.         return $this;
  64.     }
  65.     public function getCat(): ?string
  66.     {
  67.         return $this->cat;
  68.     }
  69.     public function setCat(?string $cat): static
  70.     {
  71.         $this->cat $cat;
  72.         return $this;
  73.     }
  74.     public function getFiller(): ?string
  75.     {
  76.         return $this->filler;
  77.     }
  78.     public function setFiller(?string $filler): static
  79.     {
  80.         $this->filler $filler;
  81.         return $this;
  82.     }
  83.     public function getPeriode(): ?int
  84.     {
  85.         return $this->periode;
  86.     }
  87.     public function setPeriode(?int $periode): static
  88.     {
  89.         $this->periode $periode;
  90.         return $this;
  91.     }
  92.     /**
  93.      * @return Collection<int, TCnssA01>
  94.      */
  95.     public function getTCnssA01s(): Collection
  96.     {
  97.         return $this->tCnssA01s;
  98.     }
  99.     public function addTCnssA01(TCnssA01 $tCnssA01): static
  100.     {
  101.         if (!$this->tCnssA01s->contains($tCnssA01)) {
  102.             $this->tCnssA01s->add($tCnssA01);
  103.             $tCnssA01->setCnssa00($this);
  104.         }
  105.         return $this;
  106.     }
  107.     public function removeTCnssA01(TCnssA01 $tCnssA01): static
  108.     {
  109.         if ($this->tCnssA01s->removeElement($tCnssA01)) {
  110.             // set the owning side to null (unless already changed)
  111.             if ($tCnssA01->getCnssa00() === $this) {
  112.                 $tCnssA01->setCnssa00(null);
  113.             }
  114.         }
  115.         return $this;
  116.     }
  117.     /**
  118.      * @return Collection<int, TCnssA02>
  119.      */
  120.     public function getTCnssA02s(): Collection
  121.     {
  122.         return $this->tCnssA02s;
  123.     }
  124.     public function addTCnssA02(TCnssA02 $tCnssA02): static
  125.     {
  126.         if (!$this->tCnssA02s->contains($tCnssA02)) {
  127.             $this->tCnssA02s->add($tCnssA02);
  128.             $tCnssA02->setCnssa00($this);
  129.         }
  130.         return $this;
  131.     }
  132.     public function removeTCnssA02(TCnssA02 $tCnssA02): static
  133.     {
  134.         if ($this->tCnssA02s->removeElement($tCnssA02)) {
  135.             // set the owning side to null (unless already changed)
  136.             if ($tCnssA02->getCnssa00() === $this) {
  137.                 $tCnssA02->setCnssa00(null);
  138.             }
  139.         }
  140.         return $this;
  141.     }
  142.     /**
  143.      * @return Collection<int, TCnssA03>
  144.      */
  145.     public function getTCnssA03s(): Collection
  146.     {
  147.         return $this->tCnssA03s;
  148.     }
  149.     public function addTCnssA03(TCnssA03 $tCnssA03): static
  150.     {
  151.         if (!$this->tCnssA03s->contains($tCnssA03)) {
  152.             $this->tCnssA03s->add($tCnssA03);
  153.             $tCnssA03->setCnssa00($this);
  154.         }
  155.         return $this;
  156.     }
  157.     public function removeTCnssA03(TCnssA03 $tCnssA03): static
  158.     {
  159.         if ($this->tCnssA03s->removeElement($tCnssA03)) {
  160.             // set the owning side to null (unless already changed)
  161.             if ($tCnssA03->getCnssa00() === $this) {
  162.                 $tCnssA03->setCnssa00(null);
  163.             }
  164.         }
  165.         return $this;
  166.     }
  167.     public function isActive(): ?bool
  168.     {
  169.         return $this->active;
  170.     }
  171.     public function setActive(?bool $active): static
  172.     {
  173.         $this->active $active;
  174.         return $this;
  175.     }
  176.     public function getCreated(): ?\DateTimeInterface
  177.     {
  178.         return $this->created;
  179.     }
  180.     public function setCreated(?\DateTimeInterface $created): static
  181.     {
  182.         $this->created $created;
  183.         return $this;
  184.     }
  185.     public function getUserCreated(): ?Users
  186.     {
  187.         return $this->userCreated;
  188.     }
  189.     public function setUserCreated(?Users $userCreated): static
  190.     {
  191.         $this->userCreated $userCreated;
  192.         return $this;
  193.     }
  194. }