<?php
namespace App\Entity;
use App\Repository\ComRecepcionDocumentos170Repository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ComRecepcionDocumentos170Repository::class)]
class ComRecepcionDocumentos170
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $aplicaFormatoIdentificacion = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tipoDocumentoFormatoIdentificacion = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionFormatoIdentificacion = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionDigitalFormatoIdentificacion = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $comentariosFormatoIdentificacion = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $aplicaVisitaSeguridad = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tipoDocumentoVisitaSeguridad = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionVisitaSeguridad = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionDigitalVisitaSeguridad = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $comentariosVisitaSeguridad = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $aplicaManifestacionAAI = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tipoDocumentoManifestacionAAI = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionManisfestacionAAI = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionDigitalManisfestacionAAI = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $comentariosManisfestacionAAI = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $aplicaManisfestacionLOGSVF = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tipoDocumentoManisfestacionLOGSVF = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionManisfestacionLOGSVF = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionDigitalManisfestacionLOGSVF = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $comentariosManisfestacionLOGSVF = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $aplicaMandatoAduanero = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tipoDocumentoMandatoAduanero = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionMandatoAduanero = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionDigitalMandatoAduanero = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $comentariosMandatoAduanero = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $aplicaMandatoDIAN = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tipoDocumentoMandatoDIAN = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionMandatoDIAN = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $fechaRecepcionDigitalMandatoDIAN = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $comentariosMandatoDIAN = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $documentosCompletos = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $devolucion = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $motivoDevolucion = 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\ManyToOne(inversedBy: 'comRecepcionDocumentos170s')]
private ?ComCircular170YPoderes $comCircular170 = null;
public function getId(): ?int
{
return $this->id;
}
public function getAplicaFormatoIdentificacion(): ?string
{
return $this->aplicaFormatoIdentificacion;
}
public function setAplicaFormatoIdentificacion(?string $aplicaFormatoIdentificacion): static
{
$this->aplicaFormatoIdentificacion = $aplicaFormatoIdentificacion;
return $this;
}
public function getTipoDocumentoFormatoIdentificacion(): ?string
{
return $this->tipoDocumentoFormatoIdentificacion;
}
public function setTipoDocumentoFormatoIdentificacion(?string $tipoDocumentoFormatoIdentificacion): static
{
$this->tipoDocumentoFormatoIdentificacion = $tipoDocumentoFormatoIdentificacion;
return $this;
}
public function getFechaRecepcionFormatoIdentificacion(): ?\DateTimeInterface
{
return $this->fechaRecepcionFormatoIdentificacion;
}
public function setFechaRecepcionFormatoIdentificacion(?\DateTimeInterface $fechaRecepcionFormatoIdentificacion): static
{
$this->fechaRecepcionFormatoIdentificacion = $fechaRecepcionFormatoIdentificacion;
return $this;
}
public function getFechaRecepcionDigitalFormatoIdentificacion(): ?\DateTimeInterface
{
return $this->fechaRecepcionDigitalFormatoIdentificacion;
}
public function setFechaRecepcionDigitalFormatoIdentificacion(?\DateTimeInterface $fechaRecepcionDigitalFormatoIdentificacion): static
{
$this->fechaRecepcionDigitalFormatoIdentificacion = $fechaRecepcionDigitalFormatoIdentificacion;
return $this;
}
public function getComentariosFormatoIdentificacion(): ?string
{
return $this->comentariosFormatoIdentificacion;
}
public function setComentariosFormatoIdentificacion(?string $comentariosFormatoIdentificacion): static
{
$this->comentariosFormatoIdentificacion = $comentariosFormatoIdentificacion;
return $this;
}
public function getAplicaVisitaSeguridad(): ?string
{
return $this->aplicaVisitaSeguridad;
}
public function setAplicaVisitaSeguridad(?string $aplicaVisitaSeguridad): static
{
$this->aplicaVisitaSeguridad = $aplicaVisitaSeguridad;
return $this;
}
public function getTipoDocumentoVisitaSeguridad(): ?string
{
return $this->tipoDocumentoVisitaSeguridad;
}
public function setTipoDocumentoVisitaSeguridad(?string $tipoDocumentoVisitaSeguridad): static
{
$this->tipoDocumentoVisitaSeguridad = $tipoDocumentoVisitaSeguridad;
return $this;
}
public function getFechaRecepcionVisitaSeguridad(): ?\DateTimeInterface
{
return $this->fechaRecepcionVisitaSeguridad;
}
public function setFechaRecepcionVisitaSeguridad(?\DateTimeInterface $fechaRecepcionVisitaSeguridad): static
{
$this->fechaRecepcionVisitaSeguridad = $fechaRecepcionVisitaSeguridad;
return $this;
}
public function getFechaRecepcionDigitalVisitaSeguridad(): ?\DateTimeInterface
{
return $this->fechaRecepcionDigitalVisitaSeguridad;
}
public function setFechaRecepcionDigitalVisitaSeguridad(?\DateTimeInterface $fechaRecepcionDigitalVisitaSeguridad): static
{
$this->fechaRecepcionDigitalVisitaSeguridad = $fechaRecepcionDigitalVisitaSeguridad;
return $this;
}
public function getComentariosVisitaSeguridad(): ?string
{
return $this->comentariosVisitaSeguridad;
}
public function setComentariosVisitaSeguridad(?string $comentariosVisitaSeguridad): static
{
$this->comentariosVisitaSeguridad = $comentariosVisitaSeguridad;
return $this;
}
public function getAplicaManifestacionAAI(): ?string
{
return $this->aplicaManifestacionAAI;
}
public function setAplicaManifestacionAAI(?string $aplicaManifestacionAAI): static
{
$this->aplicaManifestacionAAI = $aplicaManifestacionAAI;
return $this;
}
public function getTipoDocumentoManifestacionAAI(): ?string
{
return $this->tipoDocumentoManifestacionAAI;
}
public function setTipoDocumentoManifestacionAAI(?string $tipoDocumentoManifestacionAAI): static
{
$this->tipoDocumentoManifestacionAAI = $tipoDocumentoManifestacionAAI;
return $this;
}
public function getFechaRecepcionManisfestacionAAI(): ?\DateTimeInterface
{
return $this->fechaRecepcionManisfestacionAAI;
}
public function setFechaRecepcionManisfestacionAAI(?\DateTimeInterface $fechaRecepcionManisfestacionAAI): static
{
$this->fechaRecepcionManisfestacionAAI = $fechaRecepcionManisfestacionAAI;
return $this;
}
public function getFechaRecepcionDigitalManisfestacionAAI(): ?\DateTimeInterface
{
return $this->fechaRecepcionDigitalManisfestacionAAI;
}
public function setFechaRecepcionDigitalManisfestacionAAI(?\DateTimeInterface $fechaRecepcionDigitalManisfestacionAAI): static
{
$this->fechaRecepcionDigitalManisfestacionAAI = $fechaRecepcionDigitalManisfestacionAAI;
return $this;
}
public function getComentariosManisfestacionAAI(): ?string
{
return $this->comentariosManisfestacionAAI;
}
public function setComentariosManisfestacionAAI(?string $comentariosManisfestacionAAI): static
{
$this->comentariosManisfestacionAAI = $comentariosManisfestacionAAI;
return $this;
}
public function getAplicaManisfestacionLOGSVF(): ?string
{
return $this->aplicaManisfestacionLOGSVF;
}
public function setAplicaManisfestacionLOGSVF(?string $aplicaManisfestacionLOGSVF): static
{
$this->aplicaManisfestacionLOGSVF = $aplicaManisfestacionLOGSVF;
return $this;
}
public function getTipoDocumentoManisfestacionLOGSVF(): ?string
{
return $this->tipoDocumentoManisfestacionLOGSVF;
}
public function setTipoDocumentoManisfestacionLOGSVF(?string $tipoDocumentoManisfestacionLOGSVF): static
{
$this->tipoDocumentoManisfestacionLOGSVF = $tipoDocumentoManisfestacionLOGSVF;
return $this;
}
public function getFechaRecepcionManisfestacionLOGSVF(): ?\DateTimeInterface
{
return $this->fechaRecepcionManisfestacionLOGSVF;
}
public function setFechaRecepcionManisfestacionLOGSVF(?\DateTimeInterface $fechaRecepcionManisfestacionLOGSVF): static
{
$this->fechaRecepcionManisfestacionLOGSVF = $fechaRecepcionManisfestacionLOGSVF;
return $this;
}
public function getFechaRecepcionDigitalManisfestacionLOGSVF(): ?\DateTimeInterface
{
return $this->fechaRecepcionDigitalManisfestacionLOGSVF;
}
public function setFechaRecepcionDigitalManisfestacionLOGSVF(?\DateTimeInterface $fechaRecepcionDigitalManisfestacionLOGSVF): static
{
$this->fechaRecepcionDigitalManisfestacionLOGSVF = $fechaRecepcionDigitalManisfestacionLOGSVF;
return $this;
}
public function getComentariosManisfestacionLOGSVF(): ?string
{
return $this->comentariosManisfestacionLOGSVF;
}
public function setComentariosManisfestacionLOGSVF(?string $comentariosManisfestacionLOGSVF): static
{
$this->comentariosManisfestacionLOGSVF = $comentariosManisfestacionLOGSVF;
return $this;
}
public function getAplicaMandatoAduanero(): ?string
{
return $this->aplicaMandatoAduanero;
}
public function setAplicaMandatoAduanero(?string $aplicaMandatoAduanero): static
{
$this->aplicaMandatoAduanero = $aplicaMandatoAduanero;
return $this;
}
public function getTipoDocumentoMandatoAduanero(): ?string
{
return $this->tipoDocumentoMandatoAduanero;
}
public function setTipoDocumentoMandatoAduanero(?string $tipoDocumentoMandatoAduanero): static
{
$this->tipoDocumentoMandatoAduanero = $tipoDocumentoMandatoAduanero;
return $this;
}
public function getFechaRecepcionMandatoAduanero(): ?\DateTimeInterface
{
return $this->fechaRecepcionMandatoAduanero;
}
public function setFechaRecepcionMandatoAduanero(?\DateTimeInterface $fechaRecepcionMandatoAduanero): static
{
$this->fechaRecepcionMandatoAduanero = $fechaRecepcionMandatoAduanero;
return $this;
}
public function getFechaRecepcionDigitalMandatoAduanero(): ?\DateTimeInterface
{
return $this->fechaRecepcionDigitalMandatoAduanero;
}
public function setFechaRecepcionDigitalMandatoAduanero(?\DateTimeInterface $fechaRecepcionDigitalMandatoAduanero): static
{
$this->fechaRecepcionDigitalMandatoAduanero = $fechaRecepcionDigitalMandatoAduanero;
return $this;
}
public function getComentariosMandatoAduanero(): ?string
{
return $this->comentariosMandatoAduanero;
}
public function setComentariosMandatoAduanero(?string $comentariosMandatoAduanero): static
{
$this->comentariosMandatoAduanero = $comentariosMandatoAduanero;
return $this;
}
public function getAplicaMandatoDIAN(): ?string
{
return $this->aplicaMandatoDIAN;
}
public function setAplicaMandatoDIAN(?string $aplicaMandatoDIAN): static
{
$this->aplicaMandatoDIAN = $aplicaMandatoDIAN;
return $this;
}
public function getTipoDocumentoMandatoDIAN(): ?string
{
return $this->tipoDocumentoMandatoDIAN;
}
public function setTipoDocumentoMandatoDIAN(?string $tipoDocumentoMandatoDIAN): static
{
$this->tipoDocumentoMandatoDIAN = $tipoDocumentoMandatoDIAN;
return $this;
}
public function getFechaRecepcionMandatoDIAN(): ?\DateTimeInterface
{
return $this->fechaRecepcionMandatoDIAN;
}
public function setFechaRecepcionMandatoDIAN(?\DateTimeInterface $fechaRecepcionMandatoDIAN): static
{
$this->fechaRecepcionMandatoDIAN = $fechaRecepcionMandatoDIAN;
return $this;
}
public function getFechaRecepcionDigitalMandatoDIAN(): ?\DateTimeInterface
{
return $this->fechaRecepcionDigitalMandatoDIAN;
}
public function setFechaRecepcionDigitalMandatoDIAN(?\DateTimeInterface $fechaRecepcionDigitalMandatoDIAN): static
{
$this->fechaRecepcionDigitalMandatoDIAN = $fechaRecepcionDigitalMandatoDIAN;
return $this;
}
public function getComentariosMandatoDIAN(): ?string
{
return $this->comentariosMandatoDIAN;
}
public function setComentariosMandatoDIAN(?string $comentariosMandatoDIAN): static
{
$this->comentariosMandatoDIAN = $comentariosMandatoDIAN;
return $this;
}
public function getDocumentosCompletos(): ?string
{
return $this->documentosCompletos;
}
public function setDocumentosCompletos(?string $documentosCompletos): static
{
$this->documentosCompletos = $documentosCompletos;
return $this;
}
public function getDevolucion(): ?string
{
return $this->devolucion;
}
public function setDevolucion(?string $devolucion): static
{
$this->devolucion = $devolucion;
return $this;
}
public function getMotivoDevolucion(): ?string
{
return $this->motivoDevolucion;
}
public function setMotivoDevolucion(?string $motivoDevolucion): static
{
$this->motivoDevolucion = $motivoDevolucion;
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;
}
public function getComCircular170(): ?ComCircular170YPoderes
{
return $this->comCircular170;
}
public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
{
$this->comCircular170 = $comCircular170;
return $this;
}
}