<?php
namespace App\Entity;
use App\Repository\TacheUtilisateurRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: TacheUtilisateurRepository::class)]
class TacheUtilisateur
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column]
private ?int $idUtil = null;
#[ORM\Column]
private ?int $idTach = null;
public function getId(): ?int
{
return $this->id;
}
public function getIdUtil(): ?int
{
return $this->idUtil;
}
public function setIdUtil(int $idUtil): static
{
$this->idUtil = $idUtil;
return $this;
}
public function getIdTach(): ?int
{
return $this->idTach;
}
public function setIdTach(int $idTach): static
{
$this->idTach = $idTach;
return $this;
}
}