src/Entity/MaterialProducts.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MaterialProductsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassMaterialProductsRepository::class)]
  6. #[ORM\Table(name"materials_products")]
  7. class MaterialProducts
  8. {
  9.     //Материалы товаров
  10.     const WOOD_MATERIAL 1;
  11.     const METAL_MATERIAL 2;
  12.     const PAPER_MATERIAL 3;
  13.     const BEADS_MATERIAL 4;
  14.     const STONE_MATERIAL 5;
  15.     const LEATHER_MATERIAL 6;
  16.     const OTHER_MATERIAL 7;
  17.     #[ORM\Id]
  18.     #[ORM\GeneratedValue]
  19.     #[ORM\Column]
  20.     private ?int $id null;
  21.     #[ORM\Column(length255)]
  22.     private ?string $title null;
  23.     #[ORM\Column(length255)]
  24.     private ?string $name null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getTitle(): ?string
  30.     {
  31.         return $this->title;
  32.     }
  33.     public function setTitle(string $title): self
  34.     {
  35.         $this->title $title;
  36.         return $this;
  37.     }
  38.     public function getName(): ?string
  39.     {
  40.         return $this->name;
  41.     }
  42.     public function setName(string $name): self
  43.     {
  44.         $this->name $name;
  45.         return $this;
  46.     }
  47. }