src/Entity/Color.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ColorRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ColorRepository::class)
  7.  */
  8. class Color
  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="string", length=255)
  22.      */
  23.     private $colorCode;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $extraCode;
  28.     /**
  29.      * @ORM\Column(type="integer")
  30.      */
  31.     private $colorGroup;
  32.     /**
  33.      * @ORM\Column(type="boolean")
  34.      */
  35.     private $status;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getName(): ?string
  41.     {
  42.         return $this->name;
  43.     }
  44.     public function setName(string $name): self
  45.     {
  46.         $this->name $name;
  47.         return $this;
  48.     }
  49.     public function getColorCode(): ?string
  50.     {
  51.         return $this->colorCode;
  52.     }
  53.     public function setColorCode(string $colorCode): self
  54.     {
  55.         $this->colorCode $colorCode;
  56.         return $this;
  57.     }
  58.     public function getExtraCode(): ?string
  59.     {
  60.         return $this->extraCode;
  61.     }
  62.     public function setExtraCode(string $extraCode): self
  63.     {
  64.         $this->extraCode $extraCode;
  65.         return $this;
  66.     }
  67.     public function getColorGroup(): ?int
  68.     {
  69.         return $this->colorGroup;
  70.     }
  71.     public function setColorGroup(int $colorGroup): self
  72.     {
  73.         $this->colorGroup $colorGroup;
  74.         return $this;
  75.     }
  76.     public function getStatus(): ?bool
  77.     {
  78.         return $this->status;
  79.     }
  80.     public function setStatus(bool $status): self
  81.     {
  82.         $this->status $status;
  83.         return $this;
  84.     }
  85. }