<?phpnamespace App\Entity;use App\Repository\AccessoriesRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=AccessoriesRepository::class) */class Accessories{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $type; /** * @ORM\Column(type="string", length=255) */ private $description; /** * @ORM\Column(type="string", length=255) */ private $price; /** * @ORM\Column(type="string", length=255) */ private $ek; /** * @ORM\Column(type="string", length=255) */ private $marge; public function getId(): ?int { return $this->id; } public function getType(): ?string { return $this->type; } public function setType(string $type): self { $this->type = $type; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription(string $description): self { $this->description = $description; return $this; } public function getPrice(): ?string { return $this->price; } public function setPrice(string $price): self { $this->price = $price; return $this; } public function getEk(): ?string { return $this->ek; } public function setEk(string $ek): self { $this->ek = $ek; return $this; } public function getMarge(): ?string { return $this->marge; } public function setMarge(string $marge): self { $this->marge = $marge; return $this; }}