2022-05-22 16:01:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Entity;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
|
2022-05-23 13:22:36 +00:00
|
|
|
////#[ORM\Entity]
|
2022-05-22 16:01:54 +00:00
|
|
|
class Toothbrush3
|
|
|
|
{
|
|
|
|
#[ORM\Id]
|
|
|
|
#[ORM\GeneratedValue]
|
|
|
|
#[ORM\Column(type: 'integer')]
|
|
|
|
private int $id;
|
|
|
|
|
|
|
|
#[ORM\Column(type: 'string')]
|
|
|
|
private string $brand;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getId(): int
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
* @return Toothbrush3
|
|
|
|
*/
|
|
|
|
public function setId(int $id): Toothbrush3
|
|
|
|
{
|
|
|
|
$this->id = $id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getBrand(): string
|
|
|
|
{
|
|
|
|
return $this->brand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $brand
|
|
|
|
* @return Toothbrush3
|
|
|
|
*/
|
|
|
|
public function setBrand(string $brand): Toothbrush3
|
|
|
|
{
|
|
|
|
$this->brand = $brand;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|