src/Entity/RFProrrogaSolicitudDocumento.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RFProrrogaSolicitudDocumentoRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Table(name'rf_prorroga_solicitud_documento')]
  7. #[ORM\Entity(repositoryClassRFProrrogaSolicitudDocumentoRepository::class)]
  8. class RFProrrogaSolicitudDocumento
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'prorrogaSolicitudDocumento')]
  15.     private ?RFSolicitudDocumento $solicitudDocumento null;
  16.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  17.     private ?\DateTimeInterface $fechaEntrega null;
  18.     #[ORM\Column(typeTypes::TEXT)]
  19.     private ?string $motivo null;
  20.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  21.     private ?\DateTimeInterface $createAt null;
  22.     #[ORM\Column(length50)]
  23.     private ?string $createUser null;
  24.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  25.     private ?\DateTimeInterface $updateAt null;
  26.     #[ORM\Column(length50)]
  27.     private ?string $updateUser null;
  28.     #[ORM\ManyToOne(inversedBy'solicitaProrrogaSolicitudDocumento')]
  29.     private ?TerPersona $usuarioSolicita null;
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getSolicitudDocumento(): ?RFSolicitudDocumento
  35.     {
  36.         return $this->solicitudDocumento;
  37.     }
  38.     public function setSolicitudDocumento(?RFSolicitudDocumento $solicitudDocumento): static
  39.     {
  40.         $this->solicitudDocumento $solicitudDocumento;
  41.         return $this;
  42.     }
  43.     public function getFechaEntrega(): ?\DateTimeInterface
  44.     {
  45.         return $this->fechaEntrega;
  46.     }
  47.     public function setFechaEntrega(\DateTimeInterface $fechaEntrega): static
  48.     {
  49.         $this->fechaEntrega $fechaEntrega;
  50.         return $this;
  51.     }
  52.     public function getMotivo(): ?string
  53.     {
  54.         return $this->motivo;
  55.     }
  56.     public function setMotivo(string $motivo): static
  57.     {
  58.         $this->motivo $motivo;
  59.         return $this;
  60.     }
  61.     public function getCreateAt(): ?\DateTimeInterface
  62.     {
  63.         return $this->createAt;
  64.     }
  65.     public function setCreateAt(\DateTimeInterface $createAt): static
  66.     {
  67.         $this->createAt $createAt;
  68.         return $this;
  69.     }
  70.     public function getCreateUser(): ?string
  71.     {
  72.         return $this->createUser;
  73.     }
  74.     public function setCreateUser(string $createUser): static
  75.     {
  76.         $this->createUser $createUser;
  77.         return $this;
  78.     }
  79.     public function getUpdateAt(): ?\DateTimeInterface
  80.     {
  81.         return $this->updateAt;
  82.     }
  83.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  84.     {
  85.         $this->updateAt $updateAt;
  86.         return $this;
  87.     }
  88.     public function getUpdateUser(): ?string
  89.     {
  90.         return $this->updateUser;
  91.     }
  92.     public function setUpdateUser(string $updateUser): static
  93.     {
  94.         $this->updateUser $updateUser;
  95.         return $this;
  96.     }
  97.     public function getUsuarioSolicita(): ?TerPersona
  98.     {
  99.         return $this->usuarioSolicita;
  100.     }
  101.     public function setUsuarioSolicita(?TerPersona $usuarioSolicita): static
  102.     {
  103.         $this->usuarioSolicita $usuarioSolicita;
  104.         return $this;
  105.     }
  106. }