src/Entity/RFTablaRetencionFormato.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RFTablaRetencionFormatoRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Table(name'rf_tabla_retencion_formato')]
  7. #[ORM\Entity(repositoryClassRFTablaRetencionFormatoRepository::class)]
  8. class RFTablaRetencionFormato
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'tablaRetencionFormato')]
  15.     private ?RFTablaRetencion $tablaRetencion null;
  16.     #[ORM\Column]
  17.     private ?float $version null;
  18.     #[ORM\Column(typeTypes::TEXT)]
  19.     private ?string $formato 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.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getTablaRetencion(): ?RFTablaRetencion
  33.     {
  34.         return $this->tablaRetencion;
  35.     }
  36.     public function setTablaRetencion(?RFTablaRetencion $tablaRetencion): static
  37.     {
  38.         $this->tablaRetencion $tablaRetencion;
  39.         return $this;
  40.     }
  41.     public function getVersion(): ?float
  42.     {
  43.         return $this->version;
  44.     }
  45.     public function setVersion(float $version): static
  46.     {
  47.         $this->version $version;
  48.         return $this;
  49.     }
  50.     public function getFormato(): ?string
  51.     {
  52.         return $this->formato;
  53.     }
  54.     public function setFormato(string $formato): static
  55.     {
  56.         $this->formato $formato;
  57.         return $this;
  58.     }
  59.     public function getCreateAt(): ?\DateTimeInterface
  60.     {
  61.         return $this->createAt;
  62.     }
  63.     public function setCreateAt(\DateTimeInterface $createAt): static
  64.     {
  65.         $this->createAt $createAt;
  66.         return $this;
  67.     }
  68.     public function getCreateUser(): ?string
  69.     {
  70.         return $this->createUser;
  71.     }
  72.     public function setCreateUser(string $createUser): static
  73.     {
  74.         $this->createUser $createUser;
  75.         return $this;
  76.     }
  77.     public function getUpdateAt(): ?\DateTimeInterface
  78.     {
  79.         return $this->updateAt;
  80.     }
  81.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  82.     {
  83.         $this->updateAt $updateAt;
  84.         return $this;
  85.     }
  86.     public function getUpdateUser(): ?string
  87.     {
  88.         return $this->updateUser;
  89.     }
  90.     public function setUpdateUser(string $updateUser): static
  91.     {
  92.         $this->updateUser $updateUser;
  93.         return $this;
  94.     }
  95. }