src/Entity/Size.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SizeRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=SizeRepository::class)
  7.  */
  8. class Size
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $name;
  20.     /**
  21.      * @ORM\Column(type="text")
  22.      */
  23.     private $description;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $image;
  28.     /**
  29.      * @ORM\Column(type="float")
  30.      */
  31.     private $price;
  32.     /**
  33.      * @ORM\Column(type="integer")
  34.      */
  35.     private $uid;
  36.     /**
  37.      * @ORM\Column(type="boolean")
  38.      */
  39.     private $status;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getName(): ?string
  45.     {
  46.         return $this->name;
  47.     }
  48.     public function setName(string $name): self
  49.     {
  50.         $this->name $name;
  51.         return $this;
  52.     }
  53.     public function getDescription(): ?string
  54.     {
  55.         return $this->description;
  56.     }
  57.     public function setDescription(string $description): self
  58.     {
  59.         $this->description $description;
  60.         return $this;
  61.     }
  62.     public function getImage(): ?string
  63.     {
  64.         return $this->image;
  65.     }
  66.     public function setImage(string $image): self
  67.     {
  68.         $this->image $image;
  69.         return $this;
  70.     }
  71.     public function getPrice(): ?float
  72.     {
  73.         return $this->price;
  74.     }
  75.     public function setPrice(float $price): self
  76.     {
  77.         $this->price $price;
  78.         return $this;
  79.     }
  80.     public function getUid(): ?int
  81.     {
  82.         return $this->uid;
  83.     }
  84.     public function setUid(int $uid): self
  85.     {
  86.         $this->uid $uid;
  87.         return $this;
  88.     }
  89.     public function getStatus(): ?bool
  90.     {
  91.         return $this->status;
  92.     }
  93.     public function setStatus(bool $status): self
  94.     {
  95.         $this->status $status;
  96.         return $this;
  97.     }
  98. }