src/Entity/GroupProducts.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GroupProductsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassGroupProductsRepository::class)]
  6. #[ORM\Table(name"groups_products")]
  7. class GroupProducts
  8. {
  9.     //Группы товаров
  10.     const PAINTING_GROUP 1;
  11.     const CLOTHES_GROUP 2;
  12.     const SCULPTURES_GROUP 3;
  13.     const OTHER_GROUP 4;
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column]
  17.     private ?int $id null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $title null;
  20.     #[ORM\Column(length255)]
  21.     private ?string $name null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getTitle(): ?string
  27.     {
  28.         return $this->title;
  29.     }
  30.     public function setTitle(string $title): self
  31.     {
  32.         $this->title $title;
  33.         return $this;
  34.     }
  35.     public function getName(): ?string
  36.     {
  37.         return $this->name;
  38.     }
  39.     public function setName(string $name): self
  40.     {
  41.         $this->name $name;
  42.         return $this;
  43.     }
  44. }