src/Entity/GHSolicitudDotacionEPP.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHSolicitudDotacionEPPRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassGHSolicitudDotacionEPPRepository::class)]
  7. class GHSolicitudDotacionEPP
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  14.     private ?\DateTimeInterface $createAt null;
  15.     #[ORM\Column(length50)]
  16.     private ?string $createUser null;
  17.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  18.     private ?\DateTimeInterface $updateAt null;
  19.     #[ORM\Column(length50)]
  20.     private ?string $updateUser null;
  21.     #[ORM\ManyToOne(inversedBy'solicitudDotacionEPP')]
  22.     private ?GHSolicitudDotacion $solicitudDotacion null;
  23.     #[ORM\Column(length10)]
  24.     private ?string $talla null;
  25.     #[ORM\ManyToOne(inversedBy'solicitudDotacionEPP')]
  26.     private ?ParTipoDotacion $dotacion null;
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getCreateAt(): ?\DateTimeInterface
  32.     {
  33.         return $this->createAt;
  34.     }
  35.     public function setCreateAt(\DateTimeInterface $createAt): static
  36.     {
  37.         $this->createAt $createAt;
  38.         return $this;
  39.     }
  40.     public function getCreateUser(): ?string
  41.     {
  42.         return $this->createUser;
  43.     }
  44.     public function setCreateUser(string $createUser): static
  45.     {
  46.         $this->createUser $createUser;
  47.         return $this;
  48.     }
  49.     public function getUpdateAt(): ?\DateTimeInterface
  50.     {
  51.         return $this->updateAt;
  52.     }
  53.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  54.     {
  55.         $this->updateAt $updateAt;
  56.         return $this;
  57.     }
  58.     public function getUpdateUser(): ?string
  59.     {
  60.         return $this->updateUser;
  61.     }
  62.     public function setUpdateUser(string $updateUser): static
  63.     {
  64.         $this->updateUser $updateUser;
  65.         return $this;
  66.     }
  67.     public function getSolicitudDotacion(): ?GHSolicitudDotacion
  68.     {
  69.         return $this->solicitudDotacion;
  70.     }
  71.     public function setSolicitudDotacion(?GHSolicitudDotacion $solicitudDotacion): static
  72.     {
  73.         $this->solicitudDotacion $solicitudDotacion;
  74.         return $this;
  75.     }
  76.     public function getTalla(): ?string
  77.     {
  78.         return $this->talla;
  79.     }
  80.     public function setTalla(string $talla): static
  81.     {
  82.         $this->talla $talla;
  83.         return $this;
  84.     }
  85.     public function getDotacion(): ?ParTipoDotacion
  86.     {
  87.         return $this->dotacion;
  88.     }
  89.     public function setDotacion(?ParTipoDotacion $dotacion): static
  90.     {
  91.         $this->dotacion $dotacion;
  92.         return $this;
  93.     }
  94. }