src/Entity/DedicatedServers.php line 10
<?php
namespace App\Entity;
use App\Repository\DedicatedServersRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: DedicatedServersRepository::class)]
class DedicatedServers
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $processor = null;
#[ORM\Column(nullable: true)]
private ?int $cores = null;
#[ORM\Column(type: Types::DECIMAL, precision: 2, scale: 1, nullable: true)]
private ?string $speed = null;
#[ORM\Column(nullable: true)]
private ?int $memory = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $ram = null;
#[ORM\Column(nullable: true)]
private ?int $storage = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $raid = null;
#[ORM\Column]
private ?\DateTimeImmutable $createdAt = null;
#[ORM\Column]
private ?\DateTimeImmutable $updatedAt = null;
#[ORM\Column]
private ?bool $isActive = null;
#[ORM\ManyToOne]
private ?ProcessorTypes $processorType = null;
#[ORM\ManyToOne]
private ?HardDriveTypes $hddType = null;
#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 2, nullable: true)]
private ?string $cost_price = null;
#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 2)]
private ?string $sell_price = null;
#[ORM\ManyToOne]
private ?Supplier $supplier = null;
#[ORM\Column]
private ?bool $isPopular = null;
#[ORM\Column]
private ?bool $isFeatured = null;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getProcessor(): ?string
{
return $this->processor;
}
public function setProcessor(?string $processor): self
{
$this->processor = $processor;
return $this;
}
public function getCores(): ?int
{
return $this->cores;
}
public function setCores(?int $cores): self
{
$this->cores = $cores;
return $this;
}
public function getSpeed(): ?string
{
return $this->speed;
}
public function setSpeed(?string $speed): self
{
$this->speed = $speed;
return $this;
}
public function getMemory(): ?int
{
return $this->memory;
}
public function setMemory(?int $memory): self
{
$this->memory = $memory;
return $this;
}
public function getRam(): ?string
{
return $this->ram;
}
public function setRam(?string $ram): self
{
$this->ram = $ram;
return $this;
}
public function getStorage(): ?int
{
return $this->storage;
}
public function setStorage(?int $storage): self
{
$this->storage = $storage;
return $this;
}
public function getRaid(): ?string
{
return $this->raid;
}
public function setRaid(?string $raid): self
{
$this->raid = $raid;
return $this;
}
public function getCreatedAt(): ?\DateTimeImmutable
{
return $this->createdAt;
}
public function setCreatedAt(\DateTimeImmutable $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
public function getUpdatedAt(): ?\DateTimeImmutable
{
return $this->updatedAt;
}
public function setUpdatedAt(\DateTimeImmutable $updatedAt): self
{
$this->updatedAt = $updatedAt;
return $this;
}
public function getIsActive(): ?bool
{
return $this->isActive;
}
public function setIsActive(bool $isActive): self
{
$this->isActive = $isActive;
return $this;
}
public function getProcessorType(): ?ProcessorTypes
{
return $this->processorType;
}
public function setProcessorType(?ProcessorTypes $processorType): self
{
$this->processorType = $processorType;
return $this;
}
public function getHddType(): ?HardDriveTypes
{
return $this->hddType;
}
public function setHddType(?HardDriveTypes $hddType): self
{
$this->hddType = $hddType;
return $this;
}
public function getCostPrice(): ?string
{
return $this->cost_price;
}
public function setCostPrice(?string $cost_price): self
{
$this->cost_price = $cost_price;
return $this;
}
public function getSellPrice(): ?string
{
return $this->sell_price;
}
public function setSellPrice(string $sell_price): self
{
$this->sell_price = $sell_price;
return $this;
}
public function getSupplier(): ?Supplier
{
return $this->supplier;
}
public function setSupplier(?Supplier $supplier): self
{
$this->supplier = $supplier;
return $this;
}
public function getIsPopular(): ?bool
{
return $this->isPopular;
}
public function setIsPopular(bool $isPopular): self
{
$this->isPopular = $isPopular;
return $this;
}
public function getIsFeatured(): ?bool
{
return $this->isFeatured;
}
public function setIsFeatured(bool $isFeatured): self
{
$this->isFeatured = $isFeatured;
return $this;
}
}