src/Entity/SegSolicitudCCTVReporte.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SegSolicitudCCTVReporteRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassSegSolicitudCCTVReporteRepository::class)]
  7. class SegSolicitudCCTVReporte
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'solicitudCCTVReportes')]
  14.     private ?SegSolicitudCCTV $solicitudCCTV null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $reporte null;
  17.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  18.     private ?string $descripcion null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $link null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  22.     private ?\DateTimeInterface $createAt null;
  23.     #[ORM\Column(length50)]
  24.     private ?string $createUser null;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  26.     private ?\DateTimeInterface $updateAt null;
  27.     #[ORM\Column(length50)]
  28.     private ?string $updateUser null;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getSolicitudCCTV(): ?SegSolicitudCCTV
  34.     {
  35.         return $this->solicitudCCTV;
  36.     }
  37.     public function setSolicitudCCTV(?SegSolicitudCCTV $solicitudCCTV): static
  38.     {
  39.         $this->solicitudCCTV $solicitudCCTV;
  40.         return $this;
  41.     }
  42.     public function getReporte(): ?string
  43.     {
  44.         return $this->reporte;
  45.     }
  46.     public function setReporte(string $reporte): static
  47.     {
  48.         $this->reporte $reporte;
  49.         return $this;
  50.     }
  51.     public function getDescripcion(): ?string
  52.     {
  53.         return $this->descripcion;
  54.     }
  55.     public function setDescripcion(?string $descripcion): static
  56.     {
  57.         $this->descripcion $descripcion;
  58.         return $this;
  59.     }
  60.     public function getLink(): ?string
  61.     {
  62.         return $this->link;
  63.     }
  64.     public function setLink(?string $link): static
  65.     {
  66.         $this->link $link;
  67.         return $this;
  68.     }
  69.     public function getCreateAt(): ?\DateTimeInterface
  70.     {
  71.         return $this->createAt;
  72.     }
  73.     public function setCreateAt(\DateTimeInterface $createAt): static
  74.     {
  75.         $this->createAt $createAt;
  76.         return $this;
  77.     }
  78.     public function getCreateUser(): ?string
  79.     {
  80.         return $this->createUser;
  81.     }
  82.     public function setCreateUser(string $createUser): static
  83.     {
  84.         $this->createUser $createUser;
  85.         return $this;
  86.     }
  87.     public function getUpdateAt(): ?\DateTimeInterface
  88.     {
  89.         return $this->updateAt;
  90.     }
  91.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  92.     {
  93.         $this->updateAt $updateAt;
  94.         return $this;
  95.     }
  96.     public function getUpdateUser(): ?string
  97.     {
  98.         return $this->updateUser;
  99.     }
  100.     public function setUpdateUser(string $updateUser): static
  101.     {
  102.         $this->updateUser $updateUser;
  103.         return $this;
  104.     }
  105. }