<?phpnamespace App\Entity;use App\Repository\RFCambioCustodiaDocumentoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'rf_cambio_custodia')]#[ORM\Entity(repositoryClass: RFCambioCustodiaDocumentoRepository::class)]class RFCambioCustodiaDocumento{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'cambioCustodiaDocumento')] #[ORM\JoinColumn(nullable: false)] private ?RFSolicitudDocumento $solicitudDocumento = null; #[ORM\ManyToOne(inversedBy: 'responsableCambioCustodia')] private ?TerPersona $nuevoUsuarioResponsable = null; #[ORM\ManyToOne(inversedBy: 'cambioCustodiaDocumento')] private ?ParProceso $proceso = null; #[ORM\ManyToOne(inversedBy: 'cambioCustodiaDocumento')] private ?TerSedeEmpresa $sede = null; #[ORM\Column(type: Types::TEXT)] private ?string $motivoCambio = 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; #[ORM\ManyToOne(inversedBy: 'solicitaCambioCustodiaDocumento')] private ?TerPersona $usuarioSolicita = null; public function getId(): ?int { return $this->id; } public function getSolicitudDocumento(): ?RFSolicitudDocumento { return $this->solicitudDocumento; } public function setSolicitudDocumento(?RFSolicitudDocumento $solicitudDocumento): static { $this->solicitudDocumento = $solicitudDocumento; return $this; } public function getNuevoUsuarioResponsable(): ?TerPersona { return $this->nuevoUsuarioResponsable; } public function setNuevoUsuarioResponsable(?TerPersona $nuevoUsuarioResponsable): static { $this->nuevoUsuarioResponsable = $nuevoUsuarioResponsable; return $this; } public function getProceso(): ?ParProceso { return $this->proceso; } public function setProceso(?ParProceso $proceso): static { $this->proceso = $proceso; return $this; } public function getSede(): ?TerSedeEmpresa { return $this->sede; } public function setSede(?TerSedeEmpresa $sede): static { $this->sede = $sede; return $this; } public function getMotivoCambio(): ?string { return $this->motivoCambio; } public function setMotivoCambio(string $motivoCambio): static { $this->motivoCambio = $motivoCambio; 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; } public function getUsuarioSolicita(): ?TerPersona { return $this->usuarioSolicita; } public function setUsuarioSolicita(?TerPersona $usuarioSolicita): static { $this->usuarioSolicita = $usuarioSolicita; return $this; }}