<?phpnamespace App\Entity;use App\Repository\MailIndicateurQualiteRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: MailIndicateurQualiteRepository::class)]class MailIndicateurQualite{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 255, nullable: true)] private ?string $type = null; #[ORM\Column(nullable: true)] private ?bool $mail = null; #[ORM\ManyToOne(inversedBy: 'mailIndicateurQualites')] private ?Atelier $atelier = null; #[ORM\Column(length: 255, nullable: true)] private ?string $numero_semaine = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $date_create = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $date_mail = null; #[ORM\Column(length: 255, nullable: true)] private ?string $mois = null; #[ORM\Column(length: 255, nullable: true)] private ?string $annee = null; public function getId(): ?int { return $this->id; } public function getType(): ?string { return $this->type; } public function setType(?string $type): static { $this->type = $type; return $this; } public function isMail(): ?bool { return $this->mail; } public function setMail(?bool $mail): static { $this->mail = $mail; return $this; } public function getAtelier(): ?Atelier { return $this->atelier; } public function setAtelier(?Atelier $atelier): static { $this->atelier = $atelier; return $this; } public function getNumeroSemaine(): ?string { return $this->numero_semaine; } public function setNumeroSemaine(?string $numero_semaine): static { $this->numero_semaine = $numero_semaine; return $this; } public function getDateCreate(): ?\DateTimeInterface { return $this->date_create; } public function setDateCreate(?\DateTimeInterface $date_create): static { $this->date_create = $date_create; return $this; } public function getDateMail(): ?\DateTimeInterface { return $this->date_mail; } public function setDateMail(?\DateTimeInterface $date_mail): static { $this->date_mail = $date_mail; return $this; } public function getMois(): ?string { return $this->mois; } public function setMois(?string $mois): static { $this->mois = $mois; return $this; } public function getAnnee(): ?string { return $this->annee; } public function setAnnee(?string $annee): static { $this->annee = $annee; return $this; }}