<?phpnamespace App\Entity;use App\Repository\SizeRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=SizeRepository::class) */class Size{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $name; /** * @ORM\Column(type="text") */ private $description; /** * @ORM\Column(type="string", length=255) */ private $image; /** * @ORM\Column(type="float") */ private $price; /** * @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 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 getPrice(): ?float { return $this->price; } public function setPrice(float $price): self { $this->price = $price; 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; }}