src/Entity/HardDriveTypes.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\HardDriveTypesRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassHardDriveTypesRepository::class)]
  6. class HardDriveTypes
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $name null;
  14.     #[ORM\Column]
  15.     private ?\DateTimeImmutable $createdAt null;
  16.     #[ORM\Column]
  17.     private ?\DateTimeImmutable $updatedAt null;
  18.     #[ORM\Column]
  19.     private ?bool $isActive null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getName(): ?string
  25.     {
  26.         return $this->name;
  27.     }
  28.     public function setName(string $name): self
  29.     {
  30.         $this->name $name;
  31.         return $this;
  32.     }
  33.     public function getCreatedAt(): ?\DateTimeImmutable
  34.     {
  35.         return $this->createdAt;
  36.     }
  37.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  38.     {
  39.         $this->createdAt $createdAt;
  40.         return $this;
  41.     }
  42.     public function getUpdatedAt(): ?\DateTimeImmutable
  43.     {
  44.         return $this->updatedAt;
  45.     }
  46.     public function setUpdatedAt(\DateTimeImmutable $updatedAt): self
  47.     {
  48.         $this->updatedAt $updatedAt;
  49.         return $this;
  50.     }
  51.     public function isIsActive(): ?bool
  52.     {
  53.         return $this->isActive;
  54.     }
  55.     public function setIsActive(bool $isActive): self
  56.     {
  57.         $this->isActive $isActive;
  58.         return $this;
  59.     }
  60. }