<?phpnamespace App\Entity;use App\Repository\RFInventarioActivosRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'rf_inventario_activos')]#[ORM\Entity(repositoryClass: RFInventarioActivosRepository::class)]class RFInventarioActivos{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'inventarioActivos')] private ?TerEmpresa $empresaFilial = null; #[ORM\Column(length: 50)] private ?string $codigo = null; #[ORM\Column] private ?int $FMMIngreso = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $observaciones = 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 getEmpresaFilial(): ?TerEmpresa { return $this->empresaFilial; } public function setEmpresaFilial(?TerEmpresa $empresaFilial): static { $this->empresaFilial = $empresaFilial; return $this; } public function getCodigo(): ?string { return $this->codigo; } public function setCodigo(string $codigo): static { $this->codigo = $codigo; return $this; } public function getFMMIngreso(): ?int { return $this->FMMIngreso; } public function setFMMIngreso(int $FMMIngreso): static { $this->FMMIngreso = $FMMIngreso; return $this; } public function getObservaciones(): ?string { return $this->observaciones; } public function setObservaciones(?string $observaciones): static { $this->observaciones = $observaciones; 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; }}