src/Entity/ComCertificacionesCaso170.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComCertificacionesCaso170Repository;
  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(repositoryClassComCertificacionesCaso170Repository::class)]
  9. class ComCertificacionesCaso170
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $certificacionOEA null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $resolucionUATS null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $CTPAT null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $ISO28001 null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $BASC null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $ISO9001 null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $ISO26000 null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $ISO45001 null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $comercializadoraInternacional null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $otro null;
  35.     #[ORM\ManyToOne(inversedBy'comCertificacionesCaso170s')]
  36.     private ?ParEstado $estadoSeccion null;
  37.     #[ORM\ManyToOne(inversedBy'comCertificacionesCaso170s')]
  38.     private ?ComCircular170YPoderes $comCircular170 null;
  39.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  40.     private ?\DateTimeInterface $createAt null;
  41.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  42.     private ?\DateTimeInterface $updateAt null;
  43.     #[ORM\Column(length255nullabletrue)]
  44.     private ?string $createUser null;
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $updateUser null;
  47.     #[ORM\OneToMany(mappedBy'comCertificadosCaso170'targetEntityComCertificadosVisitaSeg::class)]
  48.     private Collection $comCertificadosVisitaSeguridad;
  49.     #[ORM\OneToMany(mappedBy'comCertificaciones170'targetEntityComDocumentosOriginales170::class)]
  50.     private Collection $comDocumentosOriginales170s;
  51.     public function __construct()
  52.     {
  53.         $this->comCertificadosVisitaSeguridad = new ArrayCollection();
  54.         $this->comDocumentosOriginales170s = new ArrayCollection();
  55.     }
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getCertificacionOEA(): ?string
  61.     {
  62.         return $this->certificacionOEA;
  63.     }
  64.     public function setCertificacionOEA(?string $certificacionOEA): static
  65.     {
  66.         $this->certificacionOEA $certificacionOEA;
  67.         return $this;
  68.     }
  69.     public function getResolucionUATS(): ?string
  70.     {
  71.         return $this->resolucionUATS;
  72.     }
  73.     public function setResolucionUATS(?string $resolucionUATS): static
  74.     {
  75.         $this->resolucionUATS $resolucionUATS;
  76.         return $this;
  77.     }
  78.     public function getCTPAT(): ?string
  79.     {
  80.         return $this->CTPAT;
  81.     }
  82.     public function setCTPAT(?string $CTPAT): static
  83.     {
  84.         $this->CTPAT $CTPAT;
  85.         return $this;
  86.     }
  87.     public function getISO28001(): ?string
  88.     {
  89.         return $this->ISO28001;
  90.     }
  91.     public function setISO28001(?string $ISO28001): static
  92.     {
  93.         $this->ISO28001 $ISO28001;
  94.         return $this;
  95.     }
  96.     public function getBASC(): ?string
  97.     {
  98.         return $this->BASC;
  99.     }
  100.     public function setBASC(?string $BASC): static
  101.     {
  102.         $this->BASC $BASC;
  103.         return $this;
  104.     }
  105.     public function getISO9001(): ?string
  106.     {
  107.         return $this->ISO9001;
  108.     }
  109.     public function setISO9001(?string $ISO9001): static
  110.     {
  111.         $this->ISO9001 $ISO9001;
  112.         return $this;
  113.     }
  114.     public function getISO26000(): ?string
  115.     {
  116.         return $this->ISO26000;
  117.     }
  118.     public function setISO26000(?string $ISO26000): static
  119.     {
  120.         $this->ISO26000 $ISO26000;
  121.         return $this;
  122.     }
  123.     public function getISO45001(): ?string
  124.     {
  125.         return $this->ISO45001;
  126.     }
  127.     public function setISO45001(?string $ISO45001): static
  128.     {
  129.         $this->ISO45001 $ISO45001;
  130.         return $this;
  131.     }
  132.     public function getComercializadoraInternacional(): ?string
  133.     {
  134.         return $this->comercializadoraInternacional;
  135.     }
  136.     public function setComercializadoraInternacional(?string $comercializadoraInternacional): static
  137.     {
  138.         $this->comercializadoraInternacional $comercializadoraInternacional;
  139.         return $this;
  140.     }
  141.     public function getOtro(): ?string
  142.     {
  143.         return $this->otro;
  144.     }
  145.     public function setOtro(?string $otro): static
  146.     {
  147.         $this->otro $otro;
  148.         return $this;
  149.     }
  150.     public function getEstadoSeccion(): ?ParEstado
  151.     {
  152.         return $this->estadoSeccion;
  153.     }
  154.     public function setEstadoSeccion(?ParEstado $estadoSeccion): static
  155.     {
  156.         $this->estadoSeccion $estadoSeccion;
  157.         return $this;
  158.     }
  159.     public function getComCircular170(): ?ComCircular170YPoderes
  160.     {
  161.         return $this->comCircular170;
  162.     }
  163.     public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
  164.     {
  165.         $this->comCircular170 $comCircular170;
  166.         return $this;
  167.     }
  168.     public function getCreateAt(): ?\DateTimeInterface
  169.     {
  170.         return $this->createAt;
  171.     }
  172.     public function setCreateAt(?\DateTimeInterface $createAt): static
  173.     {
  174.         $this->createAt $createAt;
  175.         return $this;
  176.     }
  177.     public function getUpdateAt(): ?\DateTimeInterface
  178.     {
  179.         return $this->updateAt;
  180.     }
  181.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  182.     {
  183.         $this->updateAt $updateAt;
  184.         return $this;
  185.     }
  186.     public function getCreateUser(): ?string
  187.     {
  188.         return $this->createUser;
  189.     }
  190.     public function setCreateUser(?string $createUser): static
  191.     {
  192.         $this->createUser $createUser;
  193.         return $this;
  194.     }
  195.     public function getUpdateUser(): ?string
  196.     {
  197.         return $this->updateUser;
  198.     }
  199.     public function setUpdateUser(?string $updateUser): static
  200.     {
  201.         $this->updateUser $updateUser;
  202.         return $this;
  203.     }
  204.     /**
  205.      * @return Collection<int, ComCertificadosVisitaSeg>
  206.      */
  207.     public function getComCertificadosVisitaSegs(): Collection
  208.     {
  209.         return $this->comCertificadosVisitaSegs;
  210.     }
  211.     public function addComCertificadosVisitaSeg(ComCertificadosVisitaSeg $comCertificadosVisitaSeg): static
  212.     {
  213.         if (!$this->comCertificadosVisitaSegs->contains($comCertificadosVisitaSeg)) {
  214.             $this->comCertificadosVisitaSegs->add($comCertificadosVisitaSeg);
  215.             $comCertificadosVisitaSeg->setComCertificacionesCaso170($this);
  216.         }
  217.         return $this;
  218.     }
  219.     public function removeComCertificadosVisitaSeg(ComCertificadosVisitaSeg $comCertificadosVisitaSeg): static
  220.     {
  221.         if ($this->comCertificadosVisitaSegs->removeElement($comCertificadosVisitaSeg)) {
  222.             // set the owning side to null (unless already changed)
  223.             if ($comCertificadosVisitaSeg->getComCertificacionesCaso170() === $this) {
  224.                 $comCertificadosVisitaSeg->setComCertificacionesCaso170(null);
  225.             }
  226.         }
  227.         return $this;
  228.     }
  229.     /**
  230.      * @return Collection<int, ComCertificadosVisitaSeg>
  231.      */
  232.     public function getComCertificadosVisitaSeguridad(): Collection
  233.     {
  234.         return $this->comCertificadosVisitaSeguridad;
  235.     }
  236.     public function addComCertificadosVisitaSeguridad(ComCertificadosVisitaSeg $comCertificadosVisitaSeguridad): static
  237.     {
  238.         if (!$this->comCertificadosVisitaSeguridad->contains($comCertificadosVisitaSeguridad)) {
  239.             $this->comCertificadosVisitaSeguridad->add($comCertificadosVisitaSeguridad);
  240.             $comCertificadosVisitaSeguridad->setComCertificadosCaso170($this);
  241.         }
  242.         return $this;
  243.     }
  244.     public function removeComCertificadosVisitaSeguridad(ComCertificadosVisitaSeg $comCertificadosVisitaSeguridad): static
  245.     {
  246.         if ($this->comCertificadosVisitaSeguridad->removeElement($comCertificadosVisitaSeguridad)) {
  247.             // set the owning side to null (unless already changed)
  248.             if ($comCertificadosVisitaSeguridad->getComCertificadosCaso170() === $this) {
  249.                 $comCertificadosVisitaSeguridad->setComCertificadosCaso170(null);
  250.             }
  251.         }
  252.         return $this;
  253.     }
  254.     /**
  255.      * @return Collection<int, ComDocumentosOriginales170>
  256.      */
  257.     public function getComDocumentosOriginales170s(): Collection
  258.     {
  259.         return $this->comDocumentosOriginales170s;
  260.     }
  261.     public function addComDocumentosOriginales170(ComDocumentosOriginales170 $comDocumentosOriginales170): static
  262.     {
  263.         if (!$this->comDocumentosOriginales170s->contains($comDocumentosOriginales170)) {
  264.             $this->comDocumentosOriginales170s->add($comDocumentosOriginales170);
  265.             $comDocumentosOriginales170->setComCertificaciones170($this);
  266.         }
  267.         return $this;
  268.     }
  269.     public function removeComDocumentosOriginales170(ComDocumentosOriginales170 $comDocumentosOriginales170): static
  270.     {
  271.         if ($this->comDocumentosOriginales170s->removeElement($comDocumentosOriginales170)) {
  272.             // set the owning side to null (unless already changed)
  273.             if ($comDocumentosOriginales170->getComCertificaciones170() === $this) {
  274.                 $comDocumentosOriginales170->setComCertificaciones170(null);
  275.             }
  276.         }
  277.         return $this;
  278.     }
  279. }