src/Entity/ComRegistroVencimientos.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComRegistroVencimientosRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComRegistroVencimientosRepository::class)]
  7. class ComRegistroVencimientos
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'comRegistroVencimientos')]
  14.     private ?ComCircular170YPoderes $comCircular170 null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  16.     private ?\DateTimeInterface $fechaVencimiento170AAI null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $circular170AAI null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $fechaVencimiento170LOG null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $circular170LOG null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $fechaVencimiento170SVF null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $circular170SVF null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?bool $manifestacionSuscritaAAI null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $manifestacionSuscritaAAIFirmada null;
  31.     #[ORM\Column(nullabletrue)]
  32.     private ?bool $manifestacionSuscritaLOGSVF null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $manifestacionSuscritaLOGSVFFirmada null;
  35.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  36.     private ?\DateTimeInterface $fechaVecimientoMandatoGeneral null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $mandatoGeneralFirmado null;
  39.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  40.     private ?\DateTimeInterface $fechaVecimientoMandatoEspecifico null;
  41.     #[ORM\Column(length255nullabletrue)]
  42.     private ?string $mandatoEspecificoFirmado null;
  43.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  44.     private ?\DateTimeInterface $fechaVecimientoMandatoDIAN null;
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $mandatoDIANFirmado null;
  47.     #[ORM\Column(length255nullabletrue)]
  48.     private ?string $contratoMandatoComercial null;
  49.     #[ORM\Column(length255nullabletrue)]
  50.     private ?string $contratoMandatoComercialFirmado null;
  51.     #[ORM\Column(length255nullabletrue)]
  52.     private ?string $visitaSeguridadFirmada null;
  53.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  54.     private ?string $observacion null;
  55.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  56.     private ?\DateTimeInterface $createAt null;
  57.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  58.     private ?\DateTimeInterface $updateAt null;
  59.     #[ORM\Column(length255nullabletrue)]
  60.     private ?string $createUser null;
  61.     #[ORM\Column(length255nullabletrue)]
  62.     private ?string $updateUser null;
  63.     public function getId(): ?int
  64.     {
  65.         return $this->id;
  66.     }
  67.     public function getComCircular170(): ?ComCircular170YPoderes
  68.     {
  69.         return $this->comCircular170;
  70.     }
  71.     public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
  72.     {
  73.         $this->comCircular170 $comCircular170;
  74.         return $this;
  75.     }
  76.     public function getFechaVencimiento170AAI(): ?\DateTimeInterface
  77.     {
  78.         return $this->fechaVencimiento170AAI;
  79.     }
  80.     public function setFechaVencimiento170AAI(?\DateTimeInterface $fechaVencimiento170AAI): static
  81.     {
  82.         $this->fechaVencimiento170AAI $fechaVencimiento170AAI;
  83.         return $this;
  84.     }
  85.     public function getCircular170AAI(): ?string
  86.     {
  87.         return $this->circular170AAI;
  88.     }
  89.     public function setCircular170AAI(?string $circular170AAI): static
  90.     {
  91.         $this->circular170AAI $circular170AAI;
  92.         return $this;
  93.     }
  94.     public function getFechaVencimiento170LOG(): ?\DateTimeInterface
  95.     {
  96.         return $this->fechaVencimiento170LOG;
  97.     }
  98.     public function setFechaVencimiento170LOG(?\DateTimeInterface $fechaVencimiento170LOG): static
  99.     {
  100.         $this->fechaVencimiento170LOG $fechaVencimiento170LOG;
  101.         return $this;
  102.     }
  103.     public function getCircular170LOG(): ?string
  104.     {
  105.         return $this->circular170LOG;
  106.     }
  107.     public function setCircular170LOG(?string $circular170LOG): static
  108.     {
  109.         $this->circular170LOG $circular170LOG;
  110.         return $this;
  111.     }
  112.     public function getFechaVencimiento170SVF(): ?\DateTimeInterface
  113.     {
  114.         return $this->fechaVencimiento170SVF;
  115.     }
  116.     public function setFechaVencimiento170SVF(?\DateTimeInterface $fechaVencimiento170SVF): static
  117.     {
  118.         $this->fechaVencimiento170SVF $fechaVencimiento170SVF;
  119.         return $this;
  120.     }
  121.     public function getCircular170SVF(): ?string
  122.     {
  123.         return $this->circular170SVF;
  124.     }
  125.     public function setCircular170SVF(?string $circular170SVF): static
  126.     {
  127.         $this->circular170SVF $circular170SVF;
  128.         return $this;
  129.     }
  130.     public function isManifestacionSuscritaAAI(): ?bool
  131.     {
  132.         return $this->manifestacionSuscritaAAI;
  133.     }
  134.     public function setManifestacionSuscritaAAI(?bool $manifestacionSuscritaAAI): static
  135.     {
  136.         $this->manifestacionSuscritaAAI $manifestacionSuscritaAAI;
  137.         return $this;
  138.     }
  139.     public function getManifestacionSuscritaAAIFirmada(): ?string
  140.     {
  141.         return $this->manifestacionSuscritaAAIFirmada;
  142.     }
  143.     public function setManifestacionSuscritaAAIFirmada(?string $manifestacionSuscritaAAIFirmada): static
  144.     {
  145.         $this->manifestacionSuscritaAAIFirmada $manifestacionSuscritaAAIFirmada;
  146.         return $this;
  147.     }
  148.     public function isManifestacionSuscritaLOGSVF(): ?bool
  149.     {
  150.         return $this->manifestacionSuscritaLOGSVF;
  151.     }
  152.     public function setManifestacionSuscritaLOGSVF(?bool $manifestacionSuscritaLOGSVF): static
  153.     {
  154.         $this->manifestacionSuscritaLOGSVF $manifestacionSuscritaLOGSVF;
  155.         return $this;
  156.     }
  157.     public function getManifestacionSuscritaLOGSVFFirmada(): ?string
  158.     {
  159.         return $this->manifestacionSuscritaLOGSVFFirmada;
  160.     }
  161.     public function setManifestacionSuscritaLOGSVFFirmada(?string $manifestacionSuscritaLOGSVFFirmada): static
  162.     {
  163.         $this->manifestacionSuscritaLOGSVFFirmada $manifestacionSuscritaLOGSVFFirmada;
  164.         return $this;
  165.     }
  166.     public function getFechaVecimientoMandatoGeneral(): ?\DateTimeInterface
  167.     {
  168.         return $this->fechaVecimientoMandatoGeneral;
  169.     }
  170.     public function setFechaVecimientoMandatoGeneral(?\DateTimeInterface $fechaVecimientoMandatoGeneral): static
  171.     {
  172.         $this->fechaVecimientoMandatoGeneral $fechaVecimientoMandatoGeneral;
  173.         return $this;
  174.     }
  175.     public function getMandatoGeneralFirmado(): ?string
  176.     {
  177.         return $this->mandatoGeneralFirmado;
  178.     }
  179.     public function setMandatoGeneralFirmado(?string $mandatoGeneralFirmado): static
  180.     {
  181.         $this->mandatoGeneralFirmado $mandatoGeneralFirmado;
  182.         return $this;
  183.     }
  184.     public function getFechaVecimientoMandatoEspecifico(): ?\DateTimeInterface
  185.     {
  186.         return $this->fechaVecimientoMandatoEspecifico;
  187.     }
  188.     public function setFechaVecimientoMandatoEspecifico(?\DateTimeInterface $fechaVecimientoMandatoEspecifico): static
  189.     {
  190.         $this->fechaVecimientoMandatoEspecifico $fechaVecimientoMandatoEspecifico;
  191.         return $this;
  192.     }
  193.     public function getMandatoEspecificoFirmado(): ?string
  194.     {
  195.         return $this->mandatoEspecificoFirmado;
  196.     }
  197.     public function setMandatoEspecificoFirmado(?string $mandatoEspecificoFirmado): static
  198.     {
  199.         $this->mandatoEspecificoFirmado $mandatoEspecificoFirmado;
  200.         return $this;
  201.     }
  202.     public function getFechaVecimientoMandatoDIAN(): ?\DateTimeInterface
  203.     {
  204.         return $this->fechaVecimientoMandatoDIAN;
  205.     }
  206.     public function setFechaVecimientoMandatoDIAN(?\DateTimeInterface $fechaVecimientoMandatoDIAN): static
  207.     {
  208.         $this->fechaVecimientoMandatoDIAN $fechaVecimientoMandatoDIAN;
  209.         return $this;
  210.     }
  211.     public function getMandatoDIANFirmado(): ?string
  212.     {
  213.         return $this->mandatoDIANFirmado;
  214.     }
  215.     public function setMandatoDIANFirmado(?string $mandatoDIANFirmado): static
  216.     {
  217.         $this->mandatoDIANFirmado $mandatoDIANFirmado;
  218.         return $this;
  219.     }
  220.     public function getContratoMandatoComercial(): ?string
  221.     {
  222.         return $this->contratoMandatoComercial;
  223.     }
  224.     public function setContratoMandatoComercial(?string $contratoMandatoComercial): static
  225.     {
  226.         $this->contratoMandatoComercial $contratoMandatoComercial;
  227.         return $this;
  228.     }
  229.     public function getContratoMandatoComercialFirmado(): ?string
  230.     {
  231.         return $this->contratoMandatoComercialFirmado;
  232.     }
  233.     public function setContratoMandatoComercialFirmado(?string $contratoMandatoComercialFirmado): static
  234.     {
  235.         $this->contratoMandatoComercialFirmado $contratoMandatoComercialFirmado;
  236.         return $this;
  237.     }
  238.     public function getVisitaSeguridadFirmada(): ?string
  239.     {
  240.         return $this->visitaSeguridadFirmada;
  241.     }
  242.     public function setVisitaSeguridadFirmada(?string $visitaSeguridadFirmada): static
  243.     {
  244.         $this->visitaSeguridadFirmada $visitaSeguridadFirmada;
  245.         return $this;
  246.     }
  247.     public function getObservacion(): ?string
  248.     {
  249.         return $this->observacion;
  250.     }
  251.     public function setObservacion(?string $observacion): static
  252.     {
  253.         $this->observacion $observacion;
  254.         return $this;
  255.     }
  256.     public function getCreateAt(): ?\DateTimeInterface
  257.     {
  258.         return $this->createAt;
  259.     }
  260.     public function setCreateAt(?\DateTimeInterface $createAt): static
  261.     {
  262.         $this->createAt $createAt;
  263.         return $this;
  264.     }
  265.     public function getUpdateAt(): ?\DateTimeInterface
  266.     {
  267.         return $this->updateAt;
  268.     }
  269.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  270.     {
  271.         $this->updateAt $updateAt;
  272.         return $this;
  273.     }
  274.     public function getCreateUser(): ?string
  275.     {
  276.         return $this->createUser;
  277.     }
  278.     public function setCreateUser(?string $createUser): static
  279.     {
  280.         $this->createUser $createUser;
  281.         return $this;
  282.     }
  283.     public function getUpdateUser(): ?string
  284.     {
  285.         return $this->updateUser;
  286.     }
  287.     public function setUpdateUser(?string $updateUser): static
  288.     {
  289.         $this->updateUser $updateUser;
  290.         return $this;
  291.     }
  292. }