src/Entity/DedicatedServers.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DedicatedServersRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassDedicatedServersRepository::class)]
  7. class DedicatedServers
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $name null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $processor null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?int $cores null;
  19.     #[ORM\Column(typeTypes::DECIMALprecision2scale1nullabletrue)]
  20.     private ?string $speed null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?int $memory null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $ram null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?int $storage null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $raid null;
  29.     #[ORM\Column]
  30.     private ?\DateTimeImmutable $createdAt null;
  31.     #[ORM\Column]
  32.     private ?\DateTimeImmutable $updatedAt null;
  33.     #[ORM\Column]
  34.     private ?bool $isActive null;
  35.     #[ORM\ManyToOne]
  36.     private ?ProcessorTypes $processorType null;
  37.     #[ORM\ManyToOne]
  38.     private ?HardDriveTypes $hddType null;
  39.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  40.     private ?string $cost_price null;
  41.     #[ORM\Column(typeTypes::DECIMALprecision10scale2)]
  42.     private ?string $sell_price null;
  43.     #[ORM\ManyToOne]
  44.     private ?Supplier $supplier null;
  45.     #[ORM\Column]
  46.     private ?bool $isPopular null;
  47.     #[ORM\Column]
  48.     private ?bool $isFeatured null;
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getName(): ?string
  54.     {
  55.         return $this->name;
  56.     }
  57.     public function setName(string $name): self
  58.     {
  59.         $this->name $name;
  60.         return $this;
  61.     }
  62.     public function getProcessor(): ?string
  63.     {
  64.         return $this->processor;
  65.     }
  66.     public function setProcessor(?string $processor): self
  67.     {
  68.         $this->processor $processor;
  69.         return $this;
  70.     }
  71.     public function getCores(): ?int
  72.     {
  73.         return $this->cores;
  74.     }
  75.     public function setCores(?int $cores): self
  76.     {
  77.         $this->cores $cores;
  78.         return $this;
  79.     }
  80.     public function getSpeed(): ?string
  81.     {
  82.         return $this->speed;
  83.     }
  84.     public function setSpeed(?string $speed): self
  85.     {
  86.         $this->speed $speed;
  87.         return $this;
  88.     }
  89.     public function getMemory(): ?int
  90.     {
  91.         return $this->memory;
  92.     }
  93.     public function setMemory(?int $memory): self
  94.     {
  95.         $this->memory $memory;
  96.         return $this;
  97.     }
  98.     public function getRam(): ?string
  99.     {
  100.         return $this->ram;
  101.     }
  102.     public function setRam(?string $ram): self
  103.     {
  104.         $this->ram $ram;
  105.         return $this;
  106.     }
  107.     public function getStorage(): ?int
  108.     {
  109.         return $this->storage;
  110.     }
  111.     public function setStorage(?int $storage): self
  112.     {
  113.         $this->storage $storage;
  114.         return $this;
  115.     }
  116.     public function getRaid(): ?string
  117.     {
  118.         return $this->raid;
  119.     }
  120.     public function setRaid(?string $raid): self
  121.     {
  122.         $this->raid $raid;
  123.         return $this;
  124.     }
  125.     public function getCreatedAt(): ?\DateTimeImmutable
  126.     {
  127.         return $this->createdAt;
  128.     }
  129.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  130.     {
  131.         $this->createdAt $createdAt;
  132.         return $this;
  133.     }
  134.     public function getUpdatedAt(): ?\DateTimeImmutable
  135.     {
  136.         return $this->updatedAt;
  137.     }
  138.     public function setUpdatedAt(\DateTimeImmutable $updatedAt): self
  139.     {
  140.         $this->updatedAt $updatedAt;
  141.         return $this;
  142.     }
  143.     public function getIsActive(): ?bool
  144.     {
  145.         return $this->isActive;
  146.     }
  147.     public function setIsActive(bool $isActive): self
  148.     {
  149.         $this->isActive $isActive;
  150.         return $this;
  151.     }
  152.     public function getProcessorType(): ?ProcessorTypes
  153.     {
  154.         return $this->processorType;
  155.     }
  156.     public function setProcessorType(?ProcessorTypes $processorType): self
  157.     {
  158.         $this->processorType $processorType;
  159.         return $this;
  160.     }
  161.     public function getHddType(): ?HardDriveTypes
  162.     {
  163.         return $this->hddType;
  164.     }
  165.     public function setHddType(?HardDriveTypes $hddType): self
  166.     {
  167.         $this->hddType $hddType;
  168.         return $this;
  169.     }
  170.     public function getCostPrice(): ?string
  171.     {
  172.         return $this->cost_price;
  173.     }
  174.     public function setCostPrice(?string $cost_price): self
  175.     {
  176.         $this->cost_price $cost_price;
  177.         return $this;
  178.     }
  179.     public function getSellPrice(): ?string
  180.     {
  181.         return $this->sell_price;
  182.     }
  183.     public function setSellPrice(string $sell_price): self
  184.     {
  185.         $this->sell_price $sell_price;
  186.         return $this;
  187.     }
  188.     public function getSupplier(): ?Supplier
  189.     {
  190.         return $this->supplier;
  191.     }
  192.     public function setSupplier(?Supplier $supplier): self
  193.     {
  194.         $this->supplier $supplier;
  195.         return $this;
  196.     }
  197.     public function getIsPopular(): ?bool
  198.     {
  199.         return $this->isPopular;
  200.     }
  201.     public function setIsPopular(bool $isPopular): self
  202.     {
  203.         $this->isPopular $isPopular;
  204.         return $this;
  205.     }
  206.     public function getIsFeatured(): ?bool
  207.     {
  208.         return $this->isFeatured;
  209.     }
  210.     public function setIsFeatured(bool $isFeatured): self
  211.     {
  212.         $this->isFeatured $isFeatured;
  213.         return $this;
  214.     }
  215. }