<?php
namespace App\Entity;
use App\Repository\ComVisitaSeguridadRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ComVisitaSeguridadRepository::class)]
class ComVisitaSeguridad
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaVisita = null;
#[ORM\ManyToOne(inversedBy: 'comVisitaSeguridads')]
private ?TerPersona $responsableComercial = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $descripcionIdentificacion = null;
#[ORM\ManyToOne(inversedBy: 'comVisitaSeguridads')]
private ?ComCircular170YPoderes $comCircular170 = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $createAt = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $updateAt = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $createUser = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $updateUser = null;
#[ORM\OneToMany(mappedBy: 'comVisitaSeguridad', targetEntity: ComDatosCliente::class)]
private Collection $comDatosClientes;
#[ORM\OneToMany(mappedBy: 'comVisitaSeguridad', targetEntity: ComCertificadosVisitaSeg::class)]
private Collection $comCertificadosVisitaSegs;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta1_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta1_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta1_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta2_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta2_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta2_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta3_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta3_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta3_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta4_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta4_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta4_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta5_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta5_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta5_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta6_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta6_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta6_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta6_4 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta6_5 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta6_6 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta6_7 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta7_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta7_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta7_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta8_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta8_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta8_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta9_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta9_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta9_3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta10_1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta10_2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pregunta10_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $descripcion = null;
#[ORM\Column(length: 255, nullable: true)]
private ?array $fachada = null;
#[ORM\Column(nullable: true)]
private ?array $interiorInstalaciones = null;
#[ORM\Column(nullable: true)]
private ?array $caratulaContratoArredamiento = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso1_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso1_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso1_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso2_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso2_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso2_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso3_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso3_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso3_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso4_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso4_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso4_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso5_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso5_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso5_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso6_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso6_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso6_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso6_4 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso6_5 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso6_6 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso6_7 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso7_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso7_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso7_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso8_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso8_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso8_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso9_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso9_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso9_3 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso10_1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso10_2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $compromiso10_3 = null;
public function __construct()
{
$this->comDatosClientes = new ArrayCollection();
$this->comCertificadosVisitaSegs = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getFechaVisita(): ?\DateTimeInterface
{
return $this->fechaVisita;
}
public function setFechaVisita(?\DateTimeInterface $fechaVisita): static
{
$this->fechaVisita = $fechaVisita;
return $this;
}
public function getResponsableComercial(): ?TerPersona
{
return $this->responsableComercial;
}
public function setResponsableComercial(?TerPersona $responsableComercial): static
{
$this->responsableComercial = $responsableComercial;
return $this;
}
public function getDescripcionIdentificacion(): ?string
{
return $this->descripcionIdentificacion;
}
public function setDescripcionIdentificacion(?string $descripcionIdentificacion): static
{
$this->descripcionIdentificacion = $descripcionIdentificacion;
return $this;
}
public function getComCircular170(): ?ComCircular170YPoderes
{
return $this->comCircular170;
}
public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
{
$this->comCircular170 = $comCircular170;
return $this;
}
public function getCreateAt(): ?\DateTimeInterface
{
return $this->createAt;
}
public function setCreateAt(?\DateTimeInterface $createAt): static
{
$this->createAt = $createAt;
return $this;
}
public function getUpdateAt(): ?\DateTimeInterface
{
return $this->updateAt;
}
public function setUpdateAt(?\DateTimeInterface $updateAt): static
{
$this->updateAt = $updateAt;
return $this;
}
public function getCreateUser(): ?string
{
return $this->createUser;
}
public function setCreateUser(?string $createUser): static
{
$this->createUser = $createUser;
return $this;
}
public function getUpdateUser(): ?string
{
return $this->updateUser;
}
public function setUpdateUser(?string $updateUser): static
{
$this->updateUser = $updateUser;
return $this;
}
/**
* @return Collection<int, ComDatosCliente>
*/
public function getComDatosClientes(): Collection
{
return $this->comDatosClientes;
}
public function addComDatosCliente(ComDatosCliente $comDatosCliente): static
{
if (!$this->comDatosClientes->contains($comDatosCliente)) {
$this->comDatosClientes->add($comDatosCliente);
$comDatosCliente->setComVisitaSeguridad($this);
}
return $this;
}
public function removeComDatosCliente(ComDatosCliente $comDatosCliente): static
{
if ($this->comDatosClientes->removeElement($comDatosCliente)) {
// set the owning side to null (unless already changed)
if ($comDatosCliente->getComVisitaSeguridad() === $this) {
$comDatosCliente->setComVisitaSeguridad(null);
}
}
return $this;
}
/**
* @return Collection<int, ComCertificadosVisitaSeg>
*/
public function getComCertificadosVisitaSegs(): Collection
{
return $this->comCertificadosVisitaSegs;
}
public function addComCertificadosVisitaSeg(ComCertificadosVisitaSeg $comCertificadosVisitaSeg): static
{
if (!$this->comCertificadosVisitaSegs->contains($comCertificadosVisitaSeg)) {
$this->comCertificadosVisitaSegs->add($comCertificadosVisitaSeg);
$comCertificadosVisitaSeg->setComVisitaSeguridad($this);
}
return $this;
}
public function removeComCertificadosVisitaSeg(ComCertificadosVisitaSeg $comCertificadosVisitaSeg): static
{
if ($this->comCertificadosVisitaSegs->removeElement($comCertificadosVisitaSeg)) {
// set the owning side to null (unless already changed)
if ($comCertificadosVisitaSeg->getComVisitaSeguridad() === $this) {
$comCertificadosVisitaSeg->setComVisitaSeguridad(null);
}
}
return $this;
}
public function getPregunta11(): ?string
{
return $this->pregunta1_1;
}
public function setPregunta11(?string $pregunta1_1): static
{
$this->pregunta1_1 = $pregunta1_1;
return $this;
}
public function getPregunta12(): ?string
{
return $this->pregunta1_2;
}
public function setPregunta12(?string $pregunta1_2): static
{
$this->pregunta1_2 = $pregunta1_2;
return $this;
}
public function getPregunta13(): ?string
{
return $this->pregunta1_3;
}
public function setPregunta13(?string $pregunta1_3): static
{
$this->pregunta1_3 = $pregunta1_3;
return $this;
}
public function getPregunta21(): ?string
{
return $this->pregunta2_1;
}
public function setPregunta21(?string $pregunta2_1): static
{
$this->pregunta2_1 = $pregunta2_1;
return $this;
}
public function getPregunta22(): ?string
{
return $this->pregunta2_2;
}
public function setPregunta22(?string $pregunta2_2): static
{
$this->pregunta2_2 = $pregunta2_2;
return $this;
}
public function getPregunta23(): ?string
{
return $this->pregunta2_3;
}
public function setPregunta23(?string $pregunta2_3): static
{
$this->pregunta2_3 = $pregunta2_3;
return $this;
}
public function getPregunta31(): ?string
{
return $this->pregunta3_1;
}
public function setPregunta31(?string $pregunta3_1): static
{
$this->pregunta3_1 = $pregunta3_1;
return $this;
}
public function getPregunta32(): ?string
{
return $this->pregunta3_2;
}
public function setPregunta32(?string $pregunta3_2): static
{
$this->pregunta3_2 = $pregunta3_2;
return $this;
}
public function getPregunta33(): ?string
{
return $this->pregunta3_3;
}
public function setPregunta33(?string $pregunta3_3): static
{
$this->pregunta3_3 = $pregunta3_3;
return $this;
}
public function getPregunta41(): ?string
{
return $this->pregunta4_1;
}
public function setPregunta41(?string $pregunta4_1): static
{
$this->pregunta4_1 = $pregunta4_1;
return $this;
}
public function getPregunta42(): ?string
{
return $this->pregunta4_2;
}
public function setPregunta42(?string $pregunta4_2): static
{
$this->pregunta4_2 = $pregunta4_2;
return $this;
}
public function getPregunta43(): ?string
{
return $this->pregunta4_3;
}
public function setPregunta43(?string $pregunta4_3): static
{
$this->pregunta4_3 = $pregunta4_3;
return $this;
}
public function getPregunta51(): ?string
{
return $this->pregunta5_1;
}
public function setPregunta51(?string $pregunta5_1): static
{
$this->pregunta5_1 = $pregunta5_1;
return $this;
}
public function getPregunta52(): ?string
{
return $this->pregunta5_2;
}
public function setPregunta52(?string $pregunta5_2): static
{
$this->pregunta5_2 = $pregunta5_2;
return $this;
}
public function getPregunta53(): ?string
{
return $this->pregunta5_3;
}
public function setPregunta53(?string $pregunta5_3): static
{
$this->pregunta5_3 = $pregunta5_3;
return $this;
}
public function getPregunta61(): ?string
{
return $this->pregunta6_1;
}
public function setPregunta61(?string $pregunta6_1): static
{
$this->pregunta6_1 = $pregunta6_1;
return $this;
}
public function getPregunta62(): ?string
{
return $this->pregunta6_2;
}
public function setPregunta62(?string $pregunta6_2): static
{
$this->pregunta6_2 = $pregunta6_2;
return $this;
}
public function getPregunta63(): ?string
{
return $this->pregunta6_3;
}
public function setPregunta63(?string $pregunta6_3): static
{
$this->pregunta6_3 = $pregunta6_3;
return $this;
}
public function getPregunta64(): ?string
{
return $this->pregunta6_4;
}
public function setPregunta64(?string $pregunta6_4): static
{
$this->pregunta6_4 = $pregunta6_4;
return $this;
}
public function getPregunta65(): ?string
{
return $this->pregunta6_5;
}
public function setPregunta65(?string $pregunta6_5): static
{
$this->pregunta6_5 = $pregunta6_5;
return $this;
}
public function getPregunta66(): ?string
{
return $this->pregunta6_6;
}
public function setPregunta66(?string $pregunta6_6): static
{
$this->pregunta6_6 = $pregunta6_6;
return $this;
}
public function getPregunta67(): ?string
{
return $this->pregunta6_7;
}
public function setPregunta67(?string $pregunta6_7): static
{
$this->pregunta6_7 = $pregunta6_7;
return $this;
}
public function getPregunta71(): ?string
{
return $this->pregunta7_1;
}
public function setPregunta71(?string $pregunta7_1): static
{
$this->pregunta7_1 = $pregunta7_1;
return $this;
}
public function getPregunta72(): ?string
{
return $this->pregunta7_2;
}
public function setPregunta72(?string $pregunta7_2): static
{
$this->pregunta7_2 = $pregunta7_2;
return $this;
}
public function getPregunta73(): ?string
{
return $this->pregunta7_3;
}
public function setPregunta73(?string $pregunta7_3): static
{
$this->pregunta7_3 = $pregunta7_3;
return $this;
}
public function getPregunta81(): ?string
{
return $this->pregunta8_1;
}
public function setPregunta81(?string $pregunta8_1): static
{
$this->pregunta8_1 = $pregunta8_1;
return $this;
}
public function getPregunta82(): ?string
{
return $this->pregunta8_2;
}
public function setPregunta82(?string $pregunta8_2): static
{
$this->pregunta8_2 = $pregunta8_2;
return $this;
}
public function getPregunta83(): ?string
{
return $this->pregunta8_3;
}
public function setPregunta83(?string $pregunta8_3): static
{
$this->pregunta8_3 = $pregunta8_3;
return $this;
}
public function getPregunta91(): ?string
{
return $this->pregunta9_1;
}
public function setPregunta91(?string $pregunta9_1): static
{
$this->pregunta9_1 = $pregunta9_1;
return $this;
}
public function getPregunta92(): ?string
{
return $this->pregunta9_2;
}
public function setPregunta92(?string $pregunta9_2): static
{
$this->pregunta9_2 = $pregunta9_2;
return $this;
}
public function getPregunta93(): ?string
{
return $this->pregunta9_3;
}
public function setPregunta93(?string $pregunta9_3): static
{
$this->pregunta9_3 = $pregunta9_3;
return $this;
}
public function getPregunta101(): ?string
{
return $this->pregunta10_1;
}
public function setPregunta101(?string $pregunta10_1): static
{
$this->pregunta10_1 = $pregunta10_1;
return $this;
}
public function getPregunta102(): ?string
{
return $this->pregunta10_2;
}
public function setPregunta102(?string $pregunta10_2): static
{
$this->pregunta10_2 = $pregunta10_2;
return $this;
}
public function getPregunta103(): ?string
{
return $this->pregunta10_3;
}
public function setPregunta103(?string $pregunta10_3): static
{
$this->pregunta10_3 = $pregunta10_3;
return $this;
}
public function getDescripcion(): ?string
{
return $this->descripcion;
}
public function setDescripcion(?string $descripcion): static
{
$this->descripcion = $descripcion;
return $this;
}
public function getFachada(): ?array
{
return $this->fachada;
}
public function setFachada(?array $fachada): static
{
$this->fachada = $fachada;
return $this;
}
public function getInteriorInstalaciones(): ?array
{
return $this->interiorInstalaciones;
}
public function setInteriorInstalaciones(?array $interiorInstalaciones): static
{
$this->interiorInstalaciones = $interiorInstalaciones;
return $this;
}
public function getCaratulaContratoArredamiento(): ?array
{
return $this->caratulaContratoArredamiento;
}
public function setCaratulaContratoArredamiento(?array $caratulaContratoArredamiento): static
{
$this->caratulaContratoArredamiento = $caratulaContratoArredamiento;
return $this;
}
public function getCompromiso11(): ?string
{
return $this->compromiso1_1;
}
public function setCompromiso11(?string $compromiso1_1): static
{
$this->compromiso1_1 = $compromiso1_1;
return $this;
}
public function getCompromiso12(): ?string
{
return $this->compromiso1_2;
}
public function setCompromiso12(?string $compromiso1_2): static
{
$this->compromiso1_2 = $compromiso1_2;
return $this;
}
public function getCompromiso13(): ?string
{
return $this->compromiso1_3;
}
public function setCompromiso13(?string $compromiso1_3): static
{
$this->compromiso1_3 = $compromiso1_3;
return $this;
}
public function getCompromiso21(): ?string
{
return $this->compromiso2_1;
}
public function setCompromiso21(?string $compromiso2_1): static
{
$this->compromiso2_1 = $compromiso2_1;
return $this;
}
public function getCompromiso22(): ?string
{
return $this->compromiso2_2;
}
public function setCompromiso22(?string $compromiso2_2): static
{
$this->compromiso2_2 = $compromiso2_2;
return $this;
}
public function getCompromiso23(): ?string
{
return $this->compromiso2_3;
}
public function setCompromiso23(?string $compromiso2_3): static
{
$this->compromiso2_3 = $compromiso2_3;
return $this;
}
public function getCompromiso31(): ?string
{
return $this->compromiso3_1;
}
public function setCompromiso31(?string $compromiso3_1): static
{
$this->compromiso3_1 = $compromiso3_1;
return $this;
}
public function getCompromiso32(): ?string
{
return $this->compromiso3_2;
}
public function setCompromiso32(?string $compromiso3_2): static
{
$this->compromiso3_2 = $compromiso3_2;
return $this;
}
public function getCompromiso33(): ?string
{
return $this->compromiso3_3;
}
public function setCompromiso33(?string $compromiso3_3): static
{
$this->compromiso3_3 = $compromiso3_3;
return $this;
}
public function getCompromiso41(): ?string
{
return $this->compromiso4_1;
}
public function setCompromiso41(?string $compromiso4_1): static
{
$this->compromiso4_1 = $compromiso4_1;
return $this;
}
public function getCompromiso42(): ?string
{
return $this->compromiso4_2;
}
public function setCompromiso42(?string $compromiso4_2): static
{
$this->compromiso4_2 = $compromiso4_2;
return $this;
}
public function getCompromiso43(): ?string
{
return $this->compromiso4_3;
}
public function setCompromiso43(?string $compromiso4_3): static
{
$this->compromiso4_3 = $compromiso4_3;
return $this;
}
public function getCompromiso51(): ?string
{
return $this->compromiso5_1;
}
public function setCompromiso51(?string $compromiso5_1): static
{
$this->compromiso5_1 = $compromiso5_1;
return $this;
}
public function getCompromiso52(): ?string
{
return $this->compromiso5_2;
}
public function setCompromiso52(?string $compromiso5_2): static
{
$this->compromiso5_2 = $compromiso5_2;
return $this;
}
public function getCompromiso53(): ?string
{
return $this->compromiso5_3;
}
public function setCompromiso53(?string $compromiso5_3): static
{
$this->compromiso5_3 = $compromiso5_3;
return $this;
}
public function getCompromiso61(): ?string
{
return $this->compromiso6_1;
}
public function setCompromiso61(?string $compromiso6_1): static
{
$this->compromiso6_1 = $compromiso6_1;
return $this;
}
public function getCompromiso62(): ?string
{
return $this->compromiso6_2;
}
public function setCompromiso62(?string $compromiso6_2): static
{
$this->compromiso6_2 = $compromiso6_2;
return $this;
}
public function getCompromiso63(): ?string
{
return $this->compromiso6_3;
}
public function setCompromiso63(?string $compromiso6_3): static
{
$this->compromiso6_3 = $compromiso6_3;
return $this;
}
public function getCompromiso64(): ?string
{
return $this->compromiso6_4;
}
public function setCompromiso64(?string $compromiso6_4): static
{
$this->compromiso6_4 = $compromiso6_4;
return $this;
}
public function getCompromiso65(): ?string
{
return $this->compromiso6_5;
}
public function setCompromiso65(?string $compromiso6_5): static
{
$this->compromiso6_5 = $compromiso6_5;
return $this;
}
public function getCompromiso66(): ?string
{
return $this->compromiso6_6;
}
public function setCompromiso66(?string $compromiso6_6): static
{
$this->compromiso6_6 = $compromiso6_6;
return $this;
}
public function getCompromiso67(): ?string
{
return $this->compromiso6_7;
}
public function setCompromiso67(?string $compromiso6_7): static
{
$this->compromiso6_7 = $compromiso6_7;
return $this;
}
public function getCompromiso71(): ?string
{
return $this->compromiso7_1;
}
public function setCompromiso71(?string $compromiso7_1): static
{
$this->compromiso7_1 = $compromiso7_1;
return $this;
}
public function getCompromiso72(): ?string
{
return $this->compromiso7_2;
}
public function setCompromiso72(?string $compromiso7_2): static
{
$this->compromiso7_2 = $compromiso7_2;
return $this;
}
public function getCompromiso73(): ?string
{
return $this->compromiso7_3;
}
public function setCompromiso73(?string $compromiso7_3): static
{
$this->compromiso7_3 = $compromiso7_3;
return $this;
}
public function getCompromiso81(): ?string
{
return $this->compromiso8_1;
}
public function setCompromiso81(?string $compromiso8_1): static
{
$this->compromiso8_1 = $compromiso8_1;
return $this;
}
public function getCompromiso82(): ?string
{
return $this->compromiso8_2;
}
public function setCompromiso82(?string $compromiso8_2): static
{
$this->compromiso8_2 = $compromiso8_2;
return $this;
}
public function getCompromiso83(): ?string
{
return $this->compromiso8_3;
}
public function setCompromiso83(?string $compromiso8_3): static
{
$this->compromiso8_3 = $compromiso8_3;
return $this;
}
public function getCompromiso91(): ?string
{
return $this->compromiso9_1;
}
public function setCompromiso91(?string $compromiso9_1): static
{
$this->compromiso9_1 = $compromiso9_1;
return $this;
}
public function getCompromiso92(): ?string
{
return $this->compromiso9_2;
}
public function setCompromiso92(?string $compromiso9_2): static
{
$this->compromiso9_2 = $compromiso9_2;
return $this;
}
public function getCompromiso93(): ?string
{
return $this->compromiso9_3;
}
public function setCompromiso93(?string $compromiso9_3): static
{
$this->compromiso9_3 = $compromiso9_3;
return $this;
}
public function getCompromiso101(): ?string
{
return $this->compromiso10_1;
}
public function setCompromiso101(?string $compromiso10_1): static
{
$this->compromiso10_1 = $compromiso10_1;
return $this;
}
public function getCompromiso102(): ?string
{
return $this->compromiso10_2;
}
public function setCompromiso102(?string $compromiso10_2): static
{
$this->compromiso10_2 = $compromiso10_2;
return $this;
}
public function getCompromiso103(): ?string
{
return $this->compromiso10_3;
}
public function setCompromiso103(?string $compromiso10_3): static
{
$this->compromiso10_3 = $compromiso10_3;
return $this;
}
}