<?phpnamespace App\Entity;use App\Repository\StyleRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=StyleRepository::class) */class Style{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $name; /** * @ORM\Column(type="string", length=255) */ private $sku; /** * @ORM\Column(type="text") */ private $description; /** * @ORM\Column(type="string", length=255) */ private $image; /** * @ORM\Column(type="string", length=255) */ private $sizechart; /** * @ORM\Column(type="text") */ private $howitwork; /** * @ORM\Column(type="integer") */ private $productCategory; /** * @ORM\Column(type="integer") */ private $uid; /** * @ORM\Column(type="boolean") */ private $status; 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 getSku(): ?string { return $this->sku; } public function setSku(string $sku): self { $this->sku = $sku; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription(string $description): self { $this->description = $description; return $this; } public function getImage(): ?string { return $this->image; } public function setImage(string $image): self { $this->image = $image; return $this; } public function getSizechart(): ?string { return $this->sizechart; } public function setSizechart(string $sizechart): self { $this->sizechart = $sizechart; return $this; } public function getHowitwork(): ?string { return $this->howitwork; } public function setHowitwork(string $howitwork): self { $this->howitwork = $howitwork; return $this; } public function getProductCategory(): ?int { return $this->productCategory; } public function setProductCategory(int $productCategory): self { $this->productCategory = $productCategory; return $this; } public function getUid(): ?int { return $this->uid; } public function setUid(int $uid): self { $this->uid = $uid; return $this; } public function getStatus(): ?bool { return $this->status; } public function setStatus(bool $status): self { $this->status = $status; return $this; }}