36 lines
598 B
PHP
36 lines
598 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\EmployeRepository;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity(repositoryClass: EmployeRepository::class)]
|
|
class Employe
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
private ?string $Mail = null;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getMail(): ?string
|
|
{
|
|
return $this->Mail;
|
|
}
|
|
|
|
public function setMail(string $Mail): static
|
|
{
|
|
$this->Mail = $Mail;
|
|
|
|
return $this;
|
|
}
|
|
}
|