<?phpnamespace App\Entity;use App\Repository\JurNormaEnvioRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: JurNormaEnvioRepository::class)]class JurNormaEnvio{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: Types::TEXT)] private ?string $destinatario = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $fecha = null; #[ORM\Column(length: 255)] private ?string $estado = null; #[ORM\Column(length: 20)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 20)] private ?string $updateUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\ManyToOne(inversedBy: 'normaEnvio')] private ?JurNorma $norma = null; public function getId(): ?int { return $this->id; } public function getDestinatario(): ?string { return $this->destinatario; } public function setDestinatario(string $destinatario): static { $this->destinatario = $destinatario; return $this; } public function getFecha(): ?\DateTimeInterface { return $this->fecha; } public function setFecha(\DateTimeInterface $fecha): static { $this->fecha = $fecha; return $this; } public function getEstado(): ?string { return $this->estado; } public function setEstado(string $estado): static { $this->estado = $estado; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(string $createUser): static { $this->createUser = $createUser; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(string $updateUser): static { $this->updateUser = $updateUser; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getNorma(): ?JurNorma { return $this->norma; } public function setNorma(?JurNorma $norma): static { $this->norma = $norma; return $this; }}