<?phpnamespace App\Entity;use App\Repository\RFTablaRetencionFormatoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'rf_tabla_retencion_formato')]#[ORM\Entity(repositoryClass: RFTablaRetencionFormatoRepository::class)]class RFTablaRetencionFormato{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'tablaRetencionFormato')] private ?RFTablaRetencion $tablaRetencion = null; #[ORM\Column] private ?float $version = null; #[ORM\Column(type: Types::TEXT)] private ?string $formato = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 50)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 50)] private ?string $updateUser = null; public function getId(): ?int { return $this->id; } public function getTablaRetencion(): ?RFTablaRetencion { return $this->tablaRetencion; } public function setTablaRetencion(?RFTablaRetencion $tablaRetencion): static { $this->tablaRetencion = $tablaRetencion; return $this; } public function getVersion(): ?float { return $this->version; } public function setVersion(float $version): static { $this->version = $version; return $this; } public function getFormato(): ?string { return $this->formato; } public function setFormato(string $formato): static { $this->formato = $formato; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(string $createUser): static { $this->createUser = $createUser; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(string $updateUser): static { $this->updateUser = $updateUser; return $this; }}