src/Entity/ComVisitaSeguridad.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComVisitaSeguridadRepository;
  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(repositoryClassComVisitaSeguridadRepository::class)]
  9. class ComVisitaSeguridad
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  16.     private ?\DateTimeInterface $fechaVisita null;
  17.     #[ORM\ManyToOne(inversedBy'comVisitaSeguridads')]
  18.     private ?TerPersona $responsableComercial null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $descripcionIdentificacion null;
  21.     #[ORM\ManyToOne(inversedBy'comVisitaSeguridads')]
  22.     private ?ComCircular170YPoderes $comCircular170 null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $createAt null;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  26.     private ?\DateTimeInterface $updateAt null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $createUser null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $updateUser null;
  31.     #[ORM\OneToMany(mappedBy'comVisitaSeguridad'targetEntityComDatosCliente::class)]
  32.     private Collection $comDatosClientes;
  33.     #[ORM\OneToMany(mappedBy'comVisitaSeguridad'targetEntityComCertificadosVisitaSeg::class)]
  34.     private Collection $comCertificadosVisitaSegs;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $pregunta1_1 null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $pregunta1_2 null;
  39.     #[ORM\Column(length255nullabletrue)]
  40.     private ?string $pregunta1_3 null;
  41.     #[ORM\Column(length255nullabletrue)]
  42.     private ?string $pregunta2_1 null;
  43.     #[ORM\Column(length255nullabletrue)]
  44.     private ?string $pregunta2_2 null;
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $pregunta2_3 null;
  47.     #[ORM\Column(length255nullabletrue)]
  48.     private ?string $pregunta3_1 null;
  49.     #[ORM\Column(length255nullabletrue)]
  50.     private ?string $pregunta3_2 null;
  51.     #[ORM\Column(length255nullabletrue)]
  52.     private ?string $pregunta3_3 null;
  53.     #[ORM\Column(length255nullabletrue)]
  54.     private ?string $pregunta4_1 null;
  55.     #[ORM\Column(length255nullabletrue)]
  56.     private ?string $pregunta4_2 null;
  57.     #[ORM\Column(length255nullabletrue)]
  58.     private ?string $pregunta4_3 null;
  59.     #[ORM\Column(length255nullabletrue)]
  60.     private ?string $pregunta5_1 null;
  61.     #[ORM\Column(length255nullabletrue)]
  62.     private ?string $pregunta5_2 null;
  63.     #[ORM\Column(length255nullabletrue)]
  64.     private ?string $pregunta5_3 null;
  65.     #[ORM\Column(length255nullabletrue)]
  66.     private ?string $pregunta6_1 null;
  67.     #[ORM\Column(length255nullabletrue)]
  68.     private ?string $pregunta6_2 null;
  69.     #[ORM\Column(length255nullabletrue)]
  70.     private ?string $pregunta6_3 null;
  71.     #[ORM\Column(length255nullabletrue)]
  72.     private ?string $pregunta6_4 null;
  73.     #[ORM\Column(length255nullabletrue)]
  74.     private ?string $pregunta6_5 null;
  75.     #[ORM\Column(length255nullabletrue)]
  76.     private ?string $pregunta6_6 null;
  77.     #[ORM\Column(length255nullabletrue)]
  78.     private ?string $pregunta6_7 null;
  79.     #[ORM\Column(length255nullabletrue)]
  80.     private ?string $pregunta7_1 null;
  81.     #[ORM\Column(length255nullabletrue)]
  82.     private ?string $pregunta7_2 null;
  83.     #[ORM\Column(length255nullabletrue)]
  84.     private ?string $pregunta7_3 null;
  85.     #[ORM\Column(length255nullabletrue)]
  86.     private ?string $pregunta8_1 null;
  87.     #[ORM\Column(length255nullabletrue)]
  88.     private ?string $pregunta8_2 null;
  89.     #[ORM\Column(length255nullabletrue)]
  90.     private ?string $pregunta8_3 null;
  91.     #[ORM\Column(length255nullabletrue)]
  92.     private ?string $pregunta9_1 null;
  93.     #[ORM\Column(length255nullabletrue)]
  94.     private ?string $pregunta9_2 null;
  95.     #[ORM\Column(length255nullabletrue)]
  96.     private ?string $pregunta9_3 null;
  97.     #[ORM\Column(length255nullabletrue)]
  98.     private ?string $pregunta10_1 null;
  99.     #[ORM\Column(length255nullabletrue)]
  100.     private ?string $pregunta10_2 null;
  101.     #[ORM\Column(length255nullabletrue)]
  102.     private ?string $pregunta10_3 null;
  103.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  104.     private ?string $descripcion null;
  105.     #[ORM\Column(length255nullabletrue)]
  106.     private ?array $fachada null;
  107.     #[ORM\Column(nullabletrue)]
  108.     private ?array $interiorInstalaciones null;
  109.     #[ORM\Column(nullabletrue)]
  110.     private ?array $caratulaContratoArredamiento null;
  111.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  112.     private ?string $compromiso1_1 null;
  113.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  114.     private ?string $compromiso1_2 null;
  115.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  116.     private ?string $compromiso1_3 null;
  117.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  118.     private ?string $compromiso2_1 null;
  119.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  120.     private ?string $compromiso2_2 null;
  121.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  122.     private ?string $compromiso2_3 null;
  123.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  124.     private ?string $compromiso3_1 null;
  125.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  126.     private ?string $compromiso3_2 null;
  127.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  128.     private ?string $compromiso3_3 null;
  129.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  130.     private ?string $compromiso4_1 null;
  131.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  132.     private ?string $compromiso4_2 null;
  133.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  134.     private ?string $compromiso4_3 null;
  135.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  136.     private ?string $compromiso5_1 null;
  137.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  138.     private ?string $compromiso5_2 null;
  139.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  140.     private ?string $compromiso5_3 null;
  141.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  142.     private ?string $compromiso6_1 null;
  143.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  144.     private ?string $compromiso6_2 null;
  145.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  146.     private ?string $compromiso6_3 null;
  147.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  148.     private ?string $compromiso6_4 null;
  149.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  150.     private ?string $compromiso6_5 null;
  151.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  152.     private ?string $compromiso6_6 null;
  153.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  154.     private ?string $compromiso6_7 null;
  155.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  156.     private ?string $compromiso7_1 null;
  157.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  158.     private ?string $compromiso7_2 null;
  159.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  160.     private ?string $compromiso7_3 null;
  161.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  162.     private ?string $compromiso8_1 null;
  163.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  164.     private ?string $compromiso8_2 null;
  165.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  166.     private ?string $compromiso8_3 null;
  167.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  168.     private ?string $compromiso9_1 null;
  169.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  170.     private ?string $compromiso9_2 null;
  171.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  172.     private ?string $compromiso9_3 null;
  173.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  174.     private ?string $compromiso10_1 null;
  175.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  176.     private ?string $compromiso10_2 null;
  177.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  178.     private ?string $compromiso10_3 null;
  179.     public function __construct()
  180.     {
  181.         $this->comDatosClientes = new ArrayCollection();
  182.         $this->comCertificadosVisitaSegs = new ArrayCollection();
  183.     }
  184.     public function getId(): ?int
  185.     {
  186.         return $this->id;
  187.     }
  188.     public function getFechaVisita(): ?\DateTimeInterface
  189.     {
  190.         return $this->fechaVisita;
  191.     }
  192.     public function setFechaVisita(?\DateTimeInterface $fechaVisita): static
  193.     {
  194.         $this->fechaVisita $fechaVisita;
  195.         return $this;
  196.     }
  197.     public function getResponsableComercial(): ?TerPersona
  198.     {
  199.         return $this->responsableComercial;
  200.     }
  201.     public function setResponsableComercial(?TerPersona $responsableComercial): static
  202.     {
  203.         $this->responsableComercial $responsableComercial;
  204.         return $this;
  205.     }
  206.     public function getDescripcionIdentificacion(): ?string
  207.     {
  208.         return $this->descripcionIdentificacion;
  209.     }
  210.     public function setDescripcionIdentificacion(?string $descripcionIdentificacion): static
  211.     {
  212.         $this->descripcionIdentificacion $descripcionIdentificacion;
  213.         return $this;
  214.     }
  215.     public function getComCircular170(): ?ComCircular170YPoderes
  216.     {
  217.         return $this->comCircular170;
  218.     }
  219.     public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
  220.     {
  221.         $this->comCircular170 $comCircular170;
  222.         return $this;
  223.     }
  224.     public function getCreateAt(): ?\DateTimeInterface
  225.     {
  226.         return $this->createAt;
  227.     }
  228.     public function setCreateAt(?\DateTimeInterface $createAt): static
  229.     {
  230.         $this->createAt $createAt;
  231.         return $this;
  232.     }
  233.     public function getUpdateAt(): ?\DateTimeInterface
  234.     {
  235.         return $this->updateAt;
  236.     }
  237.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  238.     {
  239.         $this->updateAt $updateAt;
  240.         return $this;
  241.     }
  242.     public function getCreateUser(): ?string
  243.     {
  244.         return $this->createUser;
  245.     }
  246.     public function setCreateUser(?string $createUser): static
  247.     {
  248.         $this->createUser $createUser;
  249.         return $this;
  250.     }
  251.     public function getUpdateUser(): ?string
  252.     {
  253.         return $this->updateUser;
  254.     }
  255.     public function setUpdateUser(?string $updateUser): static
  256.     {
  257.         $this->updateUser $updateUser;
  258.         return $this;
  259.     }
  260.     /**
  261.      * @return Collection<int, ComDatosCliente>
  262.      */
  263.     public function getComDatosClientes(): Collection
  264.     {
  265.         return $this->comDatosClientes;
  266.     }
  267.     public function addComDatosCliente(ComDatosCliente $comDatosCliente): static
  268.     {
  269.         if (!$this->comDatosClientes->contains($comDatosCliente)) {
  270.             $this->comDatosClientes->add($comDatosCliente);
  271.             $comDatosCliente->setComVisitaSeguridad($this);
  272.         }
  273.         return $this;
  274.     }
  275.     public function removeComDatosCliente(ComDatosCliente $comDatosCliente): static
  276.     {
  277.         if ($this->comDatosClientes->removeElement($comDatosCliente)) {
  278.             // set the owning side to null (unless already changed)
  279.             if ($comDatosCliente->getComVisitaSeguridad() === $this) {
  280.                 $comDatosCliente->setComVisitaSeguridad(null);
  281.             }
  282.         }
  283.         return $this;
  284.     }
  285.     /**
  286.      * @return Collection<int, ComCertificadosVisitaSeg>
  287.      */
  288.     public function getComCertificadosVisitaSegs(): Collection
  289.     {
  290.         return $this->comCertificadosVisitaSegs;
  291.     }
  292.     public function addComCertificadosVisitaSeg(ComCertificadosVisitaSeg $comCertificadosVisitaSeg): static
  293.     {
  294.         if (!$this->comCertificadosVisitaSegs->contains($comCertificadosVisitaSeg)) {
  295.             $this->comCertificadosVisitaSegs->add($comCertificadosVisitaSeg);
  296.             $comCertificadosVisitaSeg->setComVisitaSeguridad($this);
  297.         }
  298.         return $this;
  299.     }
  300.     public function removeComCertificadosVisitaSeg(ComCertificadosVisitaSeg $comCertificadosVisitaSeg): static
  301.     {
  302.         if ($this->comCertificadosVisitaSegs->removeElement($comCertificadosVisitaSeg)) {
  303.             // set the owning side to null (unless already changed)
  304.             if ($comCertificadosVisitaSeg->getComVisitaSeguridad() === $this) {
  305.                 $comCertificadosVisitaSeg->setComVisitaSeguridad(null);
  306.             }
  307.         }
  308.         return $this;
  309.     }
  310.     public function getPregunta11(): ?string
  311.     {
  312.         return $this->pregunta1_1;
  313.     }
  314.     public function setPregunta11(?string $pregunta1_1): static
  315.     {
  316.         $this->pregunta1_1 $pregunta1_1;
  317.         return $this;
  318.     }
  319.     public function getPregunta12(): ?string
  320.     {
  321.         return $this->pregunta1_2;
  322.     }
  323.     public function setPregunta12(?string $pregunta1_2): static
  324.     {
  325.         $this->pregunta1_2 $pregunta1_2;
  326.         return $this;
  327.     }
  328.     public function getPregunta13(): ?string
  329.     {
  330.         return $this->pregunta1_3;
  331.     }
  332.     public function setPregunta13(?string $pregunta1_3): static
  333.     {
  334.         $this->pregunta1_3 $pregunta1_3;
  335.         return $this;
  336.     }
  337.     public function getPregunta21(): ?string
  338.     {
  339.         return $this->pregunta2_1;
  340.     }
  341.     public function setPregunta21(?string $pregunta2_1): static
  342.     {
  343.         $this->pregunta2_1 $pregunta2_1;
  344.         return $this;
  345.     }
  346.     public function getPregunta22(): ?string
  347.     {
  348.         return $this->pregunta2_2;
  349.     }
  350.     public function setPregunta22(?string $pregunta2_2): static
  351.     {
  352.         $this->pregunta2_2 $pregunta2_2;
  353.         return $this;
  354.     }
  355.     public function getPregunta23(): ?string
  356.     {
  357.         return $this->pregunta2_3;
  358.     }
  359.     public function setPregunta23(?string $pregunta2_3): static
  360.     {
  361.         $this->pregunta2_3 $pregunta2_3;
  362.         return $this;
  363.     }
  364.     public function getPregunta31(): ?string
  365.     {
  366.         return $this->pregunta3_1;
  367.     }
  368.     public function setPregunta31(?string $pregunta3_1): static
  369.     {
  370.         $this->pregunta3_1 $pregunta3_1;
  371.         return $this;
  372.     }
  373.     public function getPregunta32(): ?string
  374.     {
  375.         return $this->pregunta3_2;
  376.     }
  377.     public function setPregunta32(?string $pregunta3_2): static
  378.     {
  379.         $this->pregunta3_2 $pregunta3_2;
  380.         return $this;
  381.     }
  382.     public function getPregunta33(): ?string
  383.     {
  384.         return $this->pregunta3_3;
  385.     }
  386.     public function setPregunta33(?string $pregunta3_3): static
  387.     {
  388.         $this->pregunta3_3 $pregunta3_3;
  389.         return $this;
  390.     }
  391.     public function getPregunta41(): ?string
  392.     {
  393.         return $this->pregunta4_1;
  394.     }
  395.     public function setPregunta41(?string $pregunta4_1): static
  396.     {
  397.         $this->pregunta4_1 $pregunta4_1;
  398.         return $this;
  399.     }
  400.     public function getPregunta42(): ?string
  401.     {
  402.         return $this->pregunta4_2;
  403.     }
  404.     public function setPregunta42(?string $pregunta4_2): static
  405.     {
  406.         $this->pregunta4_2 $pregunta4_2;
  407.         return $this;
  408.     }
  409.     public function getPregunta43(): ?string
  410.     {
  411.         return $this->pregunta4_3;
  412.     }
  413.     public function setPregunta43(?string $pregunta4_3): static
  414.     {
  415.         $this->pregunta4_3 $pregunta4_3;
  416.         return $this;
  417.     }
  418.     public function getPregunta51(): ?string
  419.     {
  420.         return $this->pregunta5_1;
  421.     }
  422.     public function setPregunta51(?string $pregunta5_1): static
  423.     {
  424.         $this->pregunta5_1 $pregunta5_1;
  425.         return $this;
  426.     }
  427.     public function getPregunta52(): ?string
  428.     {
  429.         return $this->pregunta5_2;
  430.     }
  431.     public function setPregunta52(?string $pregunta5_2): static
  432.     {
  433.         $this->pregunta5_2 $pregunta5_2;
  434.         return $this;
  435.     }
  436.     public function getPregunta53(): ?string
  437.     {
  438.         return $this->pregunta5_3;
  439.     }
  440.     public function setPregunta53(?string $pregunta5_3): static
  441.     {
  442.         $this->pregunta5_3 $pregunta5_3;
  443.         return $this;
  444.     }
  445.     public function getPregunta61(): ?string
  446.     {
  447.         return $this->pregunta6_1;
  448.     }
  449.     public function setPregunta61(?string $pregunta6_1): static
  450.     {
  451.         $this->pregunta6_1 $pregunta6_1;
  452.         return $this;
  453.     }
  454.     public function getPregunta62(): ?string
  455.     {
  456.         return $this->pregunta6_2;
  457.     }
  458.     public function setPregunta62(?string $pregunta6_2): static
  459.     {
  460.         $this->pregunta6_2 $pregunta6_2;
  461.         return $this;
  462.     }
  463.     public function getPregunta63(): ?string
  464.     {
  465.         return $this->pregunta6_3;
  466.     }
  467.     public function setPregunta63(?string $pregunta6_3): static
  468.     {
  469.         $this->pregunta6_3 $pregunta6_3;
  470.         return $this;
  471.     }
  472.     public function getPregunta64(): ?string
  473.     {
  474.         return $this->pregunta6_4;
  475.     }
  476.     public function setPregunta64(?string $pregunta6_4): static
  477.     {
  478.         $this->pregunta6_4 $pregunta6_4;
  479.         return $this;
  480.     }
  481.     public function getPregunta65(): ?string
  482.     {
  483.         return $this->pregunta6_5;
  484.     }
  485.     public function setPregunta65(?string $pregunta6_5): static
  486.     {
  487.         $this->pregunta6_5 $pregunta6_5;
  488.         return $this;
  489.     }
  490.     public function getPregunta66(): ?string
  491.     {
  492.         return $this->pregunta6_6;
  493.     }
  494.     public function setPregunta66(?string $pregunta6_6): static
  495.     {
  496.         $this->pregunta6_6 $pregunta6_6;
  497.         return $this;
  498.     }
  499.     public function getPregunta67(): ?string
  500.     {
  501.         return $this->pregunta6_7;
  502.     }
  503.     public function setPregunta67(?string $pregunta6_7): static
  504.     {
  505.         $this->pregunta6_7 $pregunta6_7;
  506.         return $this;
  507.     }
  508.     public function getPregunta71(): ?string
  509.     {
  510.         return $this->pregunta7_1;
  511.     }
  512.     public function setPregunta71(?string $pregunta7_1): static
  513.     {
  514.         $this->pregunta7_1 $pregunta7_1;
  515.         return $this;
  516.     }
  517.     public function getPregunta72(): ?string
  518.     {
  519.         return $this->pregunta7_2;
  520.     }
  521.     public function setPregunta72(?string $pregunta7_2): static
  522.     {
  523.         $this->pregunta7_2 $pregunta7_2;
  524.         return $this;
  525.     }
  526.     public function getPregunta73(): ?string
  527.     {
  528.         return $this->pregunta7_3;
  529.     }
  530.     public function setPregunta73(?string $pregunta7_3): static
  531.     {
  532.         $this->pregunta7_3 $pregunta7_3;
  533.         return $this;
  534.     }
  535.     public function getPregunta81(): ?string
  536.     {
  537.         return $this->pregunta8_1;
  538.     }
  539.     public function setPregunta81(?string $pregunta8_1): static
  540.     {
  541.         $this->pregunta8_1 $pregunta8_1;
  542.         return $this;
  543.     }
  544.     public function getPregunta82(): ?string
  545.     {
  546.         return $this->pregunta8_2;
  547.     }
  548.     public function setPregunta82(?string $pregunta8_2): static
  549.     {
  550.         $this->pregunta8_2 $pregunta8_2;
  551.         return $this;
  552.     }
  553.     public function getPregunta83(): ?string
  554.     {
  555.         return $this->pregunta8_3;
  556.     }
  557.     public function setPregunta83(?string $pregunta8_3): static
  558.     {
  559.         $this->pregunta8_3 $pregunta8_3;
  560.         return $this;
  561.     }
  562.     public function getPregunta91(): ?string
  563.     {
  564.         return $this->pregunta9_1;
  565.     }
  566.     public function setPregunta91(?string $pregunta9_1): static
  567.     {
  568.         $this->pregunta9_1 $pregunta9_1;
  569.         return $this;
  570.     }
  571.     public function getPregunta92(): ?string
  572.     {
  573.         return $this->pregunta9_2;
  574.     }
  575.     public function setPregunta92(?string $pregunta9_2): static
  576.     {
  577.         $this->pregunta9_2 $pregunta9_2;
  578.         return $this;
  579.     }
  580.     public function getPregunta93(): ?string
  581.     {
  582.         return $this->pregunta9_3;
  583.     }
  584.     public function setPregunta93(?string $pregunta9_3): static
  585.     {
  586.         $this->pregunta9_3 $pregunta9_3;
  587.         return $this;
  588.     }
  589.     public function getPregunta101(): ?string
  590.     {
  591.         return $this->pregunta10_1;
  592.     }
  593.     public function setPregunta101(?string $pregunta10_1): static
  594.     {
  595.         $this->pregunta10_1 $pregunta10_1;
  596.         return $this;
  597.     }
  598.     public function getPregunta102(): ?string
  599.     {
  600.         return $this->pregunta10_2;
  601.     }
  602.     public function setPregunta102(?string $pregunta10_2): static
  603.     {
  604.         $this->pregunta10_2 $pregunta10_2;
  605.         return $this;
  606.     }
  607.     public function getPregunta103(): ?string
  608.     {
  609.         return $this->pregunta10_3;
  610.     }
  611.     public function setPregunta103(?string $pregunta10_3): static
  612.     {
  613.         $this->pregunta10_3 $pregunta10_3;
  614.         return $this;
  615.     }
  616.     public function getDescripcion(): ?string
  617.     {
  618.         return $this->descripcion;
  619.     }
  620.     public function setDescripcion(?string $descripcion): static
  621.     {
  622.         $this->descripcion $descripcion;
  623.         return $this;
  624.     }
  625.     public function getFachada(): ?array
  626.     {
  627.         return $this->fachada;
  628.     }
  629.     public function setFachada(?array $fachada): static
  630.     {
  631.         $this->fachada $fachada;
  632.         return $this;
  633.     }
  634.     public function getInteriorInstalaciones(): ?array
  635.     {
  636.         return $this->interiorInstalaciones;
  637.     }
  638.     public function setInteriorInstalaciones(?array $interiorInstalaciones): static
  639.     {
  640.         $this->interiorInstalaciones $interiorInstalaciones;
  641.         return $this;
  642.     }
  643.     public function getCaratulaContratoArredamiento(): ?array
  644.     {
  645.         return $this->caratulaContratoArredamiento;
  646.     }
  647.     public function setCaratulaContratoArredamiento(?array $caratulaContratoArredamiento): static
  648.     {
  649.         $this->caratulaContratoArredamiento $caratulaContratoArredamiento;
  650.         return $this;
  651.     }
  652.     public function getCompromiso11(): ?string
  653.     {
  654.         return $this->compromiso1_1;
  655.     }
  656.     public function setCompromiso11(?string $compromiso1_1): static
  657.     {
  658.         $this->compromiso1_1 $compromiso1_1;
  659.         return $this;
  660.     }
  661.     public function getCompromiso12(): ?string
  662.     {
  663.         return $this->compromiso1_2;
  664.     }
  665.     public function setCompromiso12(?string $compromiso1_2): static
  666.     {
  667.         $this->compromiso1_2 $compromiso1_2;
  668.         return $this;
  669.     }
  670.     public function getCompromiso13(): ?string
  671.     {
  672.         return $this->compromiso1_3;
  673.     }
  674.     public function setCompromiso13(?string $compromiso1_3): static
  675.     {
  676.         $this->compromiso1_3 $compromiso1_3;
  677.         return $this;
  678.     }
  679.     public function getCompromiso21(): ?string
  680.     {
  681.         return $this->compromiso2_1;
  682.     }
  683.     public function setCompromiso21(?string $compromiso2_1): static
  684.     {
  685.         $this->compromiso2_1 $compromiso2_1;
  686.         return $this;
  687.     }
  688.     public function getCompromiso22(): ?string
  689.     {
  690.         return $this->compromiso2_2;
  691.     }
  692.     public function setCompromiso22(?string $compromiso2_2): static
  693.     {
  694.         $this->compromiso2_2 $compromiso2_2;
  695.         return $this;
  696.     }
  697.     public function getCompromiso23(): ?string
  698.     {
  699.         return $this->compromiso2_3;
  700.     }
  701.     public function setCompromiso23(?string $compromiso2_3): static
  702.     {
  703.         $this->compromiso2_3 $compromiso2_3;
  704.         return $this;
  705.     }
  706.     public function getCompromiso31(): ?string
  707.     {
  708.         return $this->compromiso3_1;
  709.     }
  710.     public function setCompromiso31(?string $compromiso3_1): static
  711.     {
  712.         $this->compromiso3_1 $compromiso3_1;
  713.         return $this;
  714.     }
  715.     public function getCompromiso32(): ?string
  716.     {
  717.         return $this->compromiso3_2;
  718.     }
  719.     public function setCompromiso32(?string $compromiso3_2): static
  720.     {
  721.         $this->compromiso3_2 $compromiso3_2;
  722.         return $this;
  723.     }
  724.     public function getCompromiso33(): ?string
  725.     {
  726.         return $this->compromiso3_3;
  727.     }
  728.     public function setCompromiso33(?string $compromiso3_3): static
  729.     {
  730.         $this->compromiso3_3 $compromiso3_3;
  731.         return $this;
  732.     }
  733.     public function getCompromiso41(): ?string
  734.     {
  735.         return $this->compromiso4_1;
  736.     }
  737.     public function setCompromiso41(?string $compromiso4_1): static
  738.     {
  739.         $this->compromiso4_1 $compromiso4_1;
  740.         return $this;
  741.     }
  742.     public function getCompromiso42(): ?string
  743.     {
  744.         return $this->compromiso4_2;
  745.     }
  746.     public function setCompromiso42(?string $compromiso4_2): static
  747.     {
  748.         $this->compromiso4_2 $compromiso4_2;
  749.         return $this;
  750.     }
  751.     public function getCompromiso43(): ?string
  752.     {
  753.         return $this->compromiso4_3;
  754.     }
  755.     public function setCompromiso43(?string $compromiso4_3): static
  756.     {
  757.         $this->compromiso4_3 $compromiso4_3;
  758.         return $this;
  759.     }
  760.     public function getCompromiso51(): ?string
  761.     {
  762.         return $this->compromiso5_1;
  763.     }
  764.     public function setCompromiso51(?string $compromiso5_1): static
  765.     {
  766.         $this->compromiso5_1 $compromiso5_1;
  767.         return $this;
  768.     }
  769.     public function getCompromiso52(): ?string
  770.     {
  771.         return $this->compromiso5_2;
  772.     }
  773.     public function setCompromiso52(?string $compromiso5_2): static
  774.     {
  775.         $this->compromiso5_2 $compromiso5_2;
  776.         return $this;
  777.     }
  778.     public function getCompromiso53(): ?string
  779.     {
  780.         return $this->compromiso5_3;
  781.     }
  782.     public function setCompromiso53(?string $compromiso5_3): static
  783.     {
  784.         $this->compromiso5_3 $compromiso5_3;
  785.         return $this;
  786.     }
  787.     public function getCompromiso61(): ?string
  788.     {
  789.         return $this->compromiso6_1;
  790.     }
  791.     public function setCompromiso61(?string $compromiso6_1): static
  792.     {
  793.         $this->compromiso6_1 $compromiso6_1;
  794.         return $this;
  795.     }
  796.     public function getCompromiso62(): ?string
  797.     {
  798.         return $this->compromiso6_2;
  799.     }
  800.     public function setCompromiso62(?string $compromiso6_2): static
  801.     {
  802.         $this->compromiso6_2 $compromiso6_2;
  803.         return $this;
  804.     }
  805.     public function getCompromiso63(): ?string
  806.     {
  807.         return $this->compromiso6_3;
  808.     }
  809.     public function setCompromiso63(?string $compromiso6_3): static
  810.     {
  811.         $this->compromiso6_3 $compromiso6_3;
  812.         return $this;
  813.     }
  814.     public function getCompromiso64(): ?string
  815.     {
  816.         return $this->compromiso6_4;
  817.     }
  818.     public function setCompromiso64(?string $compromiso6_4): static
  819.     {
  820.         $this->compromiso6_4 $compromiso6_4;
  821.         return $this;
  822.     }
  823.     public function getCompromiso65(): ?string
  824.     {
  825.         return $this->compromiso6_5;
  826.     }
  827.     public function setCompromiso65(?string $compromiso6_5): static
  828.     {
  829.         $this->compromiso6_5 $compromiso6_5;
  830.         return $this;
  831.     }
  832.     public function getCompromiso66(): ?string
  833.     {
  834.         return $this->compromiso6_6;
  835.     }
  836.     public function setCompromiso66(?string $compromiso6_6): static
  837.     {
  838.         $this->compromiso6_6 $compromiso6_6;
  839.         return $this;
  840.     }
  841.     public function getCompromiso67(): ?string
  842.     {
  843.         return $this->compromiso6_7;
  844.     }
  845.     public function setCompromiso67(?string $compromiso6_7): static
  846.     {
  847.         $this->compromiso6_7 $compromiso6_7;
  848.         return $this;
  849.     }
  850.     public function getCompromiso71(): ?string
  851.     {
  852.         return $this->compromiso7_1;
  853.     }
  854.     public function setCompromiso71(?string $compromiso7_1): static
  855.     {
  856.         $this->compromiso7_1 $compromiso7_1;
  857.         return $this;
  858.     }
  859.     public function getCompromiso72(): ?string
  860.     {
  861.         return $this->compromiso7_2;
  862.     }
  863.     public function setCompromiso72(?string $compromiso7_2): static
  864.     {
  865.         $this->compromiso7_2 $compromiso7_2;
  866.         return $this;
  867.     }
  868.     public function getCompromiso73(): ?string
  869.     {
  870.         return $this->compromiso7_3;
  871.     }
  872.     public function setCompromiso73(?string $compromiso7_3): static
  873.     {
  874.         $this->compromiso7_3 $compromiso7_3;
  875.         return $this;
  876.     }
  877.     public function getCompromiso81(): ?string
  878.     {
  879.         return $this->compromiso8_1;
  880.     }
  881.     public function setCompromiso81(?string $compromiso8_1): static
  882.     {
  883.         $this->compromiso8_1 $compromiso8_1;
  884.         return $this;
  885.     }
  886.     public function getCompromiso82(): ?string
  887.     {
  888.         return $this->compromiso8_2;
  889.     }
  890.     public function setCompromiso82(?string $compromiso8_2): static
  891.     {
  892.         $this->compromiso8_2 $compromiso8_2;
  893.         return $this;
  894.     }
  895.     public function getCompromiso83(): ?string
  896.     {
  897.         return $this->compromiso8_3;
  898.     }
  899.     public function setCompromiso83(?string $compromiso8_3): static
  900.     {
  901.         $this->compromiso8_3 $compromiso8_3;
  902.         return $this;
  903.     }
  904.     public function getCompromiso91(): ?string
  905.     {
  906.         return $this->compromiso9_1;
  907.     }
  908.     public function setCompromiso91(?string $compromiso9_1): static
  909.     {
  910.         $this->compromiso9_1 $compromiso9_1;
  911.         return $this;
  912.     }
  913.     public function getCompromiso92(): ?string
  914.     {
  915.         return $this->compromiso9_2;
  916.     }
  917.     public function setCompromiso92(?string $compromiso9_2): static
  918.     {
  919.         $this->compromiso9_2 $compromiso9_2;
  920.         return $this;
  921.     }
  922.     public function getCompromiso93(): ?string
  923.     {
  924.         return $this->compromiso9_3;
  925.     }
  926.     public function setCompromiso93(?string $compromiso9_3): static
  927.     {
  928.         $this->compromiso9_3 $compromiso9_3;
  929.         return $this;
  930.     }
  931.     public function getCompromiso101(): ?string
  932.     {
  933.         return $this->compromiso10_1;
  934.     }
  935.     public function setCompromiso101(?string $compromiso10_1): static
  936.     {
  937.         $this->compromiso10_1 $compromiso10_1;
  938.         return $this;
  939.     }
  940.     public function getCompromiso102(): ?string
  941.     {
  942.         return $this->compromiso10_2;
  943.     }
  944.     public function setCompromiso102(?string $compromiso10_2): static
  945.     {
  946.         $this->compromiso10_2 $compromiso10_2;
  947.         return $this;
  948.     }
  949.     public function getCompromiso103(): ?string
  950.     {
  951.         return $this->compromiso10_3;
  952.     }
  953.     public function setCompromiso103(?string $compromiso10_3): static
  954.     {
  955.         $this->compromiso10_3 $compromiso10_3;
  956.         return $this;
  957.     }
  958. }